Hi ZGW
I think i know what you are coming at…
If you are only using the drive name in you path you would use double back slash. Let’s say the output file name is “output.txt” and you want to create the file on drive let’s say “c:” . The path you would specify is
c:\output.txt.
Actually you could have represented the directory in following ways
- c:\output.txt
- c:/output.txt
All three of them will work.
But if you want to create the file in a subdirectory which is a subdirectory of other directory, then you need to use forward slash to specify the path. In my case i have a directory named “temp” in the directory “complete” on c: drive.
The file will be created if i represent the path as
c:/complete/temp/output.txt
but following representation will also work.
c:\complete/temp/output.txt (please note the forward slash for path).
or i beleive following representation will also work
c:\complete/temp.output.txt.
I hope i have answered you question.
regards
Rishi
#webMethods#Universal-Messaging-Broker#Integration-Server-and-ESB#broker