Deleting

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BarryM
    New Member
    • Mar 2008
    • 32

    Deleting

    I know how to upload and download files with the my.computer

    Code:
     My.Computer.Network.DownloadFile(address ast string , destination file name as string)
    and

    Code:
     My.Computer.Network.UploadFile(source file name as string, address as string)
    but once i have uploaded and than downloaded is it possible to delete the file
    somehow using vb 2005

    thanks
  • jamesd0142
    Contributor
    • Sep 2007
    • 471

    #2
    system.io.file. delete...

    Comment

    • BarryM
      New Member
      • Mar 2008
      • 32

      #3
      that can only delete a file on a hardrive it doesent support URI files
      the file i want to delete is like http://www.mywebpage.c om/myfile.txt

      Comment

      • daniel aristidou
        Contributor
        • Aug 2007
        • 494

        #4
        Originally posted by BarryM
        that can only delete a file on a hardrive it doesent support URI files
        the file i want to delete is like http://www.mywebpage.c om/myfile.txt
        im confused...

        you want to delete a file from a website over the net? ie so you want to delete a file from a website server?
        To do this you obviously need to have the access rights.

        Comment

        Working...