Помощь! Я получаю ошибку File Not Found
при попытке переименовать файл с переменной. Переменная string
.
Я могу посмотреть на переменную, и там находится точное имя файла, но когда я запускаю код, он говорит "not found"!
Dim filePath, fileName, absPath, newPath As String
filePath = "P:\Automated\"
fileName = MySite.GetResult
absPath = filePath & fileName
newPath = "P:\Automated\NEW.csv"
'The following is a rename from CuteFTP Pro COM Object:
'(Getting the same result from this and the below "Name".
'MySite.LocalRename "P:\Automated\" & fileName, "P:\Automated\NEW.csv"
Name absPath As newPath