{"id":17267180,"url":"https://github.com/eirannejad/easyadc","last_synced_at":"2025-10-14T20:30:50.869Z","repository":{"id":102032843,"uuid":"454488854","full_name":"eirannejad/EasyADC","owner":"eirannejad","description":"Easy Wrapper for Autodesk Desktop Connector API","archived":false,"fork":false,"pushed_at":"2022-07-05T22:02:43.000Z","size":29,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-16T18:59:36.216Z","etag":null,"topics":["autodesk","bim360","revit"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eirannejad.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-01T17:44:28.000Z","updated_at":"2022-02-06T18:35:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"7e45729a-6567-4338-b511-b3d51b5a022a","html_url":"https://github.com/eirannejad/EasyADC","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/eirannejad/EasyADC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eirannejad%2FEasyADC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eirannejad%2FEasyADC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eirannejad%2FEasyADC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eirannejad%2FEasyADC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eirannejad","download_url":"https://codeload.github.com/eirannejad/EasyADC/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eirannejad%2FEasyADC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020905,"owners_count":26086948,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autodesk","bim360","revit"],"created_at":"2024-10-15T08:09:47.516Z","updated_at":"2025-10-14T20:30:50.543Z","avatar_url":"https://github.com/eirannejad.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyADC\nEasy Wrapper for Autodesk DesktopConnector API\n\n\n## Get Started\n\nInstantiate an ADC connector:\n\n```csharp\nusing EasyADC;\n\n// ADC could also be instantiated by passing location and name\n// of ADC api assembly e.g. new ADC(adcLocation, adcAssemblyName)\nvar adc = new ADC();\n\n// Full path of ADC assembly file\nadc.ADCAssemblyPath\n\n// Check if ADC service is available\nif (adc.IsReady) {\n    // Check if file exists on any of ADC drives\n    string filePath = @\"C:\\some\\file\\path\";\n    adc.Contains(filePath);\n\n    // Convert ADC BIM360 drive path to local path\n    filePath = @\"Autodesk Docs://My Org/My Project/Project Files/File.txt\"\n    adc.GetLocalPath(filePath);\n\n    // Get information about give file\n    ADCFileInfo info = adc.GetFileInfo(filePath);\n\n    // Check if file is locked by any user\n    adc.IsLocked(filePath);\n\n    // Check if file is locked by other\n    adc.IsLockedByOther(filePath);\n\n    // Lock and unlock files\n    adc.LockFile(filePath);\n    adc.UnlockFile(filePath);\n\n    //Check if given file is synchronized\n    adc.IsSynced(filePath);\n\n    // Synchronize given file\n    adc.SyncFile(filePath);\n}\n```\n## Developer Notes\n\n- To build, ADC needs to be installed at `C:\\Program Files\\Autodesk\\Desktop Connector\\`. See `ADCInstallPath` in [Directory.Build.props](src/Directory.Build.props) file\n- Project is intentionally build _without_ optimization. This allows the `ADC` constructor to load the ADC api assembly before calling the functions and removes this burden from the user. See `\u003cOptimize\u003eFalse\u003c/Optimize\u003e` in [ADC.csproj](src/ADC.csproj)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feirannejad%2Feasyadc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feirannejad%2Feasyadc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feirannejad%2Feasyadc/lists"}