by CarlitoGil » Thu Mar 31, 2011 6:15 am
3.2.4.1304
If you rename a file to it's short path MM ask you if you want to replace it, like if other file had that path.
Code: Select all
oSongData.Path = oFSO.GetFile(oSongData.Path).ShortPath
In the mean time I avoid the prompt like this, but this creates duplicate entries in monitored folders
Code: Select all
oSongData.Path = ""
oFSO.MoveFile oSongData.Path, oFSO.GetFile(oSongData.Path).ShortPath
oSongData.Path = NewPath
3.2.4.1304
If you rename a file to it's short path MM ask you if you want to replace it, like if other file had that path.
[code]oSongData.Path = oFSO.GetFile(oSongData.Path).ShortPath[/code]
In the mean time I avoid the prompt like this, but this creates duplicate entries in monitored folders
[code]
oSongData.Path = ""
oFSO.MoveFile oSongData.Path, oFSO.GetFile(oSongData.Path).ShortPath
oSongData.Path = NewPath
[/code]