![]() | RemFileimportFromUrl Method |
Namespace: Paperwork.Connect
public a_GenericResult importFromUrl( ObjectID objectId, string fileName, string url, string compressFormat )
public void importFromUrl() { ObjectID objectId = new ObjectID("NesneNumarası"); string fileName = "Dosya_Adı"; string url = @"C:\Temp\"; string compressFormat = "ZIP"; a_GenericResult retval = p.rFile.importFromUrl(objectId, fileName, url, compressFormat); if (retval.ErrorCode != 0) throw new Exception(retval.Message); else Console.WriteLine(retval); Console.ReadLine(); }