how to
rename files?
delete files?
copy files?
open files with their specific programs (.txt in notepad, .doc in word, .jpg in acdsee...)?
Printable View
how to
rename files?
delete files?
copy files?
open files with their specific programs (.txt in notepad, .doc in word, .jpg in acdsee...)?
IO.File.Move or My.Computer.FileSystem.RenameFile
IO.File.Delete or My.Computer.FileSystem.DeleteFile
IO.File.Copy or My.Computer.FileSystem.CopyFile
Process.Start
For the first three at least, you could have simply typed the question into MSDN and it would have provided you the answer. Look first, ask questions later.