Michael Teo

Results 80 comments of Michael Teo

My suggestion is to create one pysmb instance for each thread, so each thread will use its own pysmb instance (and underlying SMB connection) to perform your file transfer operation.

@dwoz: The separation arises from the fact that pysmb has been supporting python 2.5 and below. I think python 2.6 is the first python 2.x to have support for the...

I have taken a quick look at your changes. It looks like it's doable with minimal impact on the API. Will you be able to checkout and submit PRs against...

If it's ok, I want to delay this merge as it is against the master branch. I have marked this PR as todo. When the changes are ready on dev-2.0,...

@vushu: Can you try pysmb 1.1.22? That's the version before echo_data use the byte literals. I will probably fix this in the next release.

@alexei : Have you tried createDirectory('myshare', 'a/b') ?

What OS/distro are you using? If you can provide the packet capture, I can look into this in more details later on.

@alexei : Weird, I'm not able to reproduce the error. Are you using Ubuntu 14.04 as your remote server? I will need the packet capture from you to see what's...

Note that if you are trying to create 'foo/bar' folder, 'foo' folder must exist on the remote server.

@spikergit1 : You can try turning off NTLMv2 authentication to see if it works: c = SMBConnection(user, passwd, 'vagrant', 'work', use_ntlm_v2=False) If it still fails, can you provide the wireshark...