Hi,
i would like to clean up the volume on my NAS , finding duplicates across multiple shared folders and eventually removing them.
Is there anyway to map an entire TNOS volume to a Windows drive letter ?
i would like to be able to write a C# program that finds duplicate files, or failing that a c++ linux program , but i would prefer to access the entire volume in one go
is there any way to do that ?
[Help] Can entire volume be accessed from a client PC
Re: [Help] Can entire volume be accessed from a client PC
You may create one single shared folder for the volume and map the folder, create subfolders for it later so that entire volume is mapped
To contact our team, please send email to following addresses, remember to replace (at) with @
Technical team: support(at)terra-master.com(for technical support)
Service team: service(at)terra-master.com(for purchasing, return, replacement, RMA service)
Technical team: support(at)terra-master.com(for technical support)
Service team: service(at)terra-master.com(for purchasing, return, replacement, RMA service)
Re: [Help] Can entire volume be accessed from a client PC
We apologize, but what you're requesting cannot be implemented. An SMB share is an access point to a directory tree, not a storage volume. A volume is a low-level storage management concept, whereas a shared folder is the access control boundary presented to the user.
To contact our team, please send email to following addresses, remember to replace (at) with @:
Support team: support(at)terra-master.com (for technical support only)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
Support team: support(at)terra-master.com (for technical support only)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
- sianderson
- Silver Member
- Posts: 418
- Joined: 02 Aug 2020, 03:42

Re: [Help] Can entire volume be accessed from a client PC
if you are looking at writing your own program then just run through a list of shared folders in an array?
F2-424 TOS 7.0.0777
F2-423 TOS 7.0.0777
F2-210 TOS 4.2.44
D4-320
C/O
F4-424 TOS 6.0.794
F2-423 TOS 7.0.0777
F2-210 TOS 4.2.44
D4-320
C/O
F4-424 TOS 6.0.794
Re: [Help] Can entire volume be accessed from a client PC
You're right. If you were to write your own program to remove duplicate hard links across shared folders, the core logic would indeed be to iterate through an array containing all the paths to the target folders, and then perform hard link operations on the duplicate files within the same volume.
To contact our team, please send email to following addresses, remember to replace (at) with @
Technical team: support(at)terra-master.com(for technical support)
Service team: service(at)terra-master.com(for purchasing, return, replacement, RMA service)
Technical team: support(at)terra-master.com(for technical support)
Service team: service(at)terra-master.com(for purchasing, return, replacement, RMA service)
- sianderson
- Silver Member
- Posts: 418
- Joined: 02 Aug 2020, 03:42

Re: [Help] Can entire volume be accessed from a client PC
its probably not a very efficient way of doing it, but it should workMikeZhang wrote: ↑12 Jun 2026, 07:24You're right. If you were to write your own program to remove duplicate hard links across shared folders, the core logic would indeed be to iterate through an array containing all the paths to the target folders, and then perform hard link operations on the duplicate files within the same volume.
F2-424 TOS 7.0.0777
F2-423 TOS 7.0.0777
F2-210 TOS 4.2.44
D4-320
C/O
F4-424 TOS 6.0.794
F2-423 TOS 7.0.0777
F2-210 TOS 4.2.44
D4-320
C/O
F4-424 TOS 6.0.794

