Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SharpBox 将文件上传到 Dropbox。它工作正常,但是我还在 Dropbox 上创建了一个文件夹来上传文件。我可以创建文件夹,但我想在创建文件夹之前先检查文件夹是否存在。我似乎无法找到一种方法来做到这一点,到处找。
提前致谢
if(dropBoxStorage.GetFolder("/folder") != null) { // donot create folder } else { // create folder }