如何将使用 azure files 同步的文件复制到新的 azure 存储位置?
How to copy files synced using azure files to a new azure storage location?
我已将我的 azure 存储文件映射到本地计算机的网络驱动器中。现在,每当将新文件粘贴到本地计算机网络驱动器中时,我想将文件从 azures 共享文件位置复制到 azure 存储中的新位置。
我按照 this tutorial 将 azure 文件安装到我的本地机器上。
谁能帮我将这些文件从共享位置复制到 Azure 存储帐户中的新位置?
实现这种情况有哪些不同的方法?
I want to copy the file from azures shared files location to a new location in azure storage whenever a new file is pasted in local machines network drive.
您 mount your Azure File share on Windows 似乎想要监视文件 additions/changes 到本地计算机网络驱动器并将新文件复制到另一个区域(文件共享或 blob)。
您可以尝试这种方法:创建并运行 FileTrigger WebJob on your local machine to detect whether new files arrive, and use Azure Storage Services REST API 或 Microsoft Azure 存储客户端库以编程方式访问并将新文件复制到另一个文件共享或 blob。
我已将我的 azure 存储文件映射到本地计算机的网络驱动器中。现在,每当将新文件粘贴到本地计算机网络驱动器中时,我想将文件从 azures 共享文件位置复制到 azure 存储中的新位置。
我按照 this tutorial 将 azure 文件安装到我的本地机器上。
谁能帮我将这些文件从共享位置复制到 Azure 存储帐户中的新位置?
实现这种情况有哪些不同的方法?
I want to copy the file from azures shared files location to a new location in azure storage whenever a new file is pasted in local machines network drive.
您 mount your Azure File share on Windows 似乎想要监视文件 additions/changes 到本地计算机网络驱动器并将新文件复制到另一个区域(文件共享或 blob)。
您可以尝试这种方法:创建并运行 FileTrigger WebJob on your local machine to detect whether new files arrive, and use Azure Storage Services REST API 或 Microsoft Azure 存储客户端库以编程方式访问并将新文件复制到另一个文件共享或 blob。