Hi all,
I currently use W3WRITE-RESOURCE which can only store the file in RES folder of the library.
How to store the uploaded file in the server in a specify folder others than RES folder of the library?
Anyone help? Thanks.
Hi all,
I currently use W3WRITE-RESOURCE which can only store the file in RES folder of the library.
How to store the uploaded file in the server in a specify folder others than RES folder of the library?
Anyone help? Thanks.
Why don’t use
DEFINE WORK FILE 12 #MY-PATH TYPE "UNFORMATTED" ATTRIBUTES "KEEP,NOAPPEND,NOBOM"
WRITE WORK FILE 12 VARIABLE #FILE_DATA
CLOSE WORK 12
where #MY-PATH is the name of my file at the filesystem (Win/Unix), and
#FILE_DATA is a (A) DYNAMIC containing your document.
:roll:
The attribute clause is optional, and overwrite the NATPARM default settings…
I had tried use the work file, but it need to define the physical path of the folder by using this way.
By not reveal the physical path, I had create its virtual folder. Is there anyway to store the file in virtual folder?
Thanks. ![]()
May you can explain more precisely (temporary files, data exchange, logging, …) why you need this virtual folder and why you can’t use a physical one? ![]()
[quote="Weihnachtsb