is it possible to convert vb script ( vbs ) to c# ?
if so then how would i convert this to c# ?
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("C:\folder.txt", 1)
Do Until objFile.AtEndOfStream
strCharacters = objFile.ReadLine
objFSO.createfolder strCharacters
Loop
also the part that shows the folder path
Set objFile = objFSO.OpenTextFile("C:\folder.txt", 1)
i would like to read the path from a settings.xml file so it can be changed via a browsefolderdialog
Thanks Again :)