如何将本地驱动器中的现有文件夹映射到 Azure 文件共享存储?
How to map an existing folder in my local drive to Azure File Share storage?
我正在研究 Azure 文件共享存储。我可以看到我可以使用以下命令将我的文件共享存储映射为我的 PC 中的网络驱动器:
$ net use [drive letter] \ppolstorage.file.core.windows.net\cloud-drive
/u: [storage account access key]
但是有什么方法可以将我本地驱动器中的现有文件夹(例如 D Drive
中的 Test Folder
映射到 Azure 文件共享存储?这可能吗?
But is there any way to map an existing folder in my local drive, for
example Test Folder in D Drive to Azure File Share Storage? Is this
possible?
从技术上讲,使用 Azure File Sync
应该是可能的,尽管它更适合您的本地文件共享(即本质上是服务器产品),而不是映射计算机本地驱动器中的文件夹。
我从未见过这样做,但它似乎可以使用符号目录 Link。例如:
C:\>mklink /D c:\share \mystorageaccount.file.core.windows.net\share
我正在研究 Azure 文件共享存储。我可以看到我可以使用以下命令将我的文件共享存储映射为我的 PC 中的网络驱动器:
$ net use [drive letter] \ppolstorage.file.core.windows.net\cloud-drive
/u: [storage account access key]
但是有什么方法可以将我本地驱动器中的现有文件夹(例如 D Drive
中的 Test Folder
映射到 Azure 文件共享存储?这可能吗?
But is there any way to map an existing folder in my local drive, for example Test Folder in D Drive to Azure File Share Storage? Is this possible?
从技术上讲,使用 Azure File Sync
应该是可能的,尽管它更适合您的本地文件共享(即本质上是服务器产品),而不是映射计算机本地驱动器中的文件夹。
我从未见过这样做,但它似乎可以使用符号目录 Link。例如:
C:\>mklink /D c:\share \mystorageaccount.file.core.windows.net\share