hello,
I am reading all files from a directory and writing them to a text file. This is working just fine.
How would i go about removing the file path from the list of file names in the text file.
This is information I do not need.
THanks,
Starlight849
I am reading all files from a directory and writing them to a text file. This is working just fine.
Code:
IO.File.WriteAllLines(strFile, IO.Directory.GetFiles(strPath, "*.txt"))
This is information I do not need.
THanks,
Starlight849
Comment