ADD/StashFS: step-28: support Copy/Move options

This commit is contained in:
rich2014 2026-06-09 09:30:40 +08:00
commit cf6e1725e1

View file

@ -211,6 +211,10 @@ begin
FCurrentAddress:= STASH_SCHEME;
_fileSystemFS:= IFileSystemFileSource(FileSourceManager.Find(TFileSystemFileSource,EmptyStr));
_fileSystemFS.AddEventListener( @self.onFileSystemEvent );
FOperationsClasses[fsoCopyIn] := TStashCopyInOperation.GetOperationClass;
FOperationsClasses[fsoCopyOut] := _fileSystemFS.GetOperationClass(fsoCopyOut);
FOperationsClasses[fsoMove] := _fileSystemFS.GetOperationClass(fsoMove);;
end;
destructor TStashFileSource.Destroy;