Zend certified PHP/Magento developer

smbclient sees file but cant find it

I have been using smbclient to grab files from a windows file system to an ubuntu based computer. It was working up until a few weeks ago. It works on 2 other computers with the exact same settings. From ubuntu I do:
smbclient -A ./credentialsFile //IP/path/to/folder -c
at that point I am in the directory. I then do
mask "" and
mget file.txt
it responds with
get file file.txt?
I type y
it then states
failed to open IPpathtofolderfile.txt NT_STATUS_OBJECT_PATH_NOT_FOUND

I can manually use get to grab individual files. If I try to follow the same procedure to just grab the directory (mget folder (after recurse ON), it doesnt error, but also doesnt download any files.

this is the overall command that used to work:
smbclient -A ~/.credentials //IP/path/to/ -c 'mask ""; recurse ON; prompt OFF; mget folder;' . Now it doesnt error but it also does nothing.

How can it know what file I am talking about yet be unable to find it?