You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing an issue when using the SFTP functionality in Tabby. Specifically, when I upload multiple files, and one of the directories contains more than 100 files, only a portion of those files gets uploaded successfully.
Here’s a script that I used to generate 200 files for testing:
constfs=require('fs');constpath=require('path');// Create output directoryconstoutputDir='generated_files';if(!fs.existsSync(outputDir)){fs.mkdirSync(outputDir);}// Generate 200 filesfor(leti=1;i<=200;i++){constfileName=path.join(outputDir,`${i}.txt`);// Generate random contentconstcontent=`This is random content for file ${i}: ${Math.random()}`;fs.writeFileSync(fileName,content);console.log(`Created file: ${fileName}`);}console.log('All files have been generated!');
After running this script, I drag the folder generated_files (which contains all 200 files) into the SFTP upload window. While I expect to see the folder uploaded with all 200 files inside, I only find 100 files in the generated_files folder on the server.
Is there a limitation or a bug in the SFTP handling that would cause such behavior? Any guidance or fixes for this issue would be greatly appreciated.
Thank you!
The text was updated successfully, but these errors were encountered:
Version: 1.0.215
Platform: Windows x64 10.0.19045
Plugins: quick-cmds, docker, background
Frontend: xterm-webgl
Hello,
I am experiencing an issue when using the SFTP functionality in Tabby. Specifically, when I upload multiple files, and one of the directories contains more than 100 files, only a portion of those files gets uploaded successfully.
Here’s a script that I used to generate 200 files for testing:
After running this script, I drag the folder generated_files (which contains all 200 files) into the SFTP upload window. While I expect to see the folder uploaded with all 200 files inside, I only find 100 files in the generated_files folder on the server.
Is there a limitation or a bug in the SFTP handling that would cause such behavior? Any guidance or fixes for this issue would be greatly appreciated.
Thank you!
The text was updated successfully, but these errors were encountered: