Hi, I create a folder on this path
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)+“\Downloads\FacturiXML”
and I have a warning telling me “Absolute paths not recommended. User a relative path instead.”
How to modify this path to be relative path?
HI @adrianab.98
Create a string Variable and assign the path to that variable
FilePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)+“\Downloads\FacturiXML\Filename.extension”
Then pass the FilePath in the create folder
Regards
Sudharsan
system
(system)
Closed
3
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.