Jayich-Lab / tray-launcher

A launcher for Windows that resides in the taskbar for managing .bat scripts.
MIT License
7 stars 1 forks source link

String compression #33

Closed danhuaxu closed 2 years ago

danhuaxu commented 2 years ago

In case the path to the script is too long and exceeds the limit of a single writing.

Write multiple times~

fanmingyu212 commented 2 years ago

Can you clarify what is a single writing?

danhuaxu commented 2 years ago

Can you clarify what is a single writing?

Oh, I was referring to the size of the underlying writing IO write buffer, for the streams module. This actually shouldn't be a problem since the write method will be queued until it can write again. Nvm

fanmingyu212 commented 2 years ago

Yes I don't think it will be a problem. Likely the write method is implemented to write arbitrary (but reasonable) length of a str.