Page 1 of 1

Dynamic upload folder

Posted: Wed Nov 29, 2017 7:38 pm
by greenvox

In the latest version I ended up doing the following:

In Table-Specific > Common > Row_Inserting

//Enter your code here
string folderpath = null;
folderpath = "upload/" + <field>.DbValue + "/";
ImportFile.UploadPath = folderpath;
//End custom code

Note: Replace <field> with the field name you want to pull the value from.