CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2009
    Posts
    20

    Downloading SWF & FLV Programmatically

    Hi eveyone !!
    In Visula c# Language, I want to find out way to download swf files and flv files from a URL
    any help will be appreciated

  2. #2
    Join Date
    May 2006
    Posts
    306

    Re: Downloading SWF & FLV Programmatically

    IIRC
    Code:
    WebClient client = new WebClient();
    String url = "http://www.example.com/";
    String fileName = "DownlaodedFile.Extension";
    client.DownloadFile(url, fileName);

  3. #3
    Join Date
    Mar 2009
    Posts
    1

    Re: Downloading SWF & FLV Programmatically

    You may give iWisoft swf to video converter a try, it can download the swf files and convert the swf to flv. I have tried it, it works fine.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured