mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-24 18:08:16 +02:00
SMBServer: Include share name when listing open files
This commit is contained in:
parent
4c84a297f8
commit
de256fdb51
2 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ namespace SMBLibrary.Server
|
|||
{
|
||||
foreach (OpenFileObject openFile in m_openFiles.Values)
|
||||
{
|
||||
result.Add(openFile.Path);
|
||||
result.Add(@"\" + openFile.ShareName + openFile.Path);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
|
|
@ -171,7 +171,7 @@ namespace SMBLibrary.Server
|
|||
{
|
||||
foreach (OpenFileObject openFile in m_openFiles.Values)
|
||||
{
|
||||
result.Add(openFile.Path);
|
||||
result.Add(@"\" + openFile.ShareName + openFile.Path);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue