I want to bulk upload the local file to the sharepoint.Each file corresponds to an ArisObject.
When the user runs the report, first select the ArisObject need to be synchronized. Finally, the user selected one by one in the list each ArisObject in the corresponding file. User configuration is complete, read the local file uploaded to SharePonit. SharePonit return path will be written to the corresponding ArisObject attribute.
So I use the table to achieve the UI.
iDialogTemplate1.Table(10,25,600,188,["GUID","对象名称","文档路径"],[Constants.TABLECOLUMN_DEFAULT,Constants.TABLECOLUMN_DEFAULT,Constants.TABLECOLUMN_FILE_EDIT],[],"tbshow",Constants.TABLE_STYLE_MULTISELECT);
But in the end, I only read the file path to the table each row selected by the user.
How can i read the local client file to a byte[]?
Please, help me to solve this problem.