Hi everyone,
I've just purchased an N9320B off eBay, and had the exact same issue, unable to 'copy' files to drive ...
There were 3 files stored in the internal memory of the device, and I wanted to save them, but whatever key I inserted, got error 764: unable to save file. Argh ...
This is now solved, and had nothing to do with a virus, or a defective USB port. For those having that same issue, here is how I solved my issue:
-1. Ensure that USB port of the N9320B is not defective. Find an USB drive with a LED (I used an Emtec 4Gb drive, red translucent for that). Then 'copy' a file without inserting your key. You have error 507 (no USB drive inserted), meaning that SA sees no device on USB port. Then insert your drive, LED must blink (as it would do when you insert your key in a PC), then 'copy' file again. LED blinks, and you get error 764, i.e. unable to write file. Sure, you are not 100% sure that port is defective, but it gives you basic information (LED turns on: you have power, and LED blinks when accessed: SA tries to access your drive).
-2. Clean your USB drive. I had a 'La Cie' USB key, brand new still in package, and SA was able to save data on it, despite garbage that was on it (La Cie utilities). 'Copy' was though not possible on the Emtec drive, 4Gb, despite formatting with Windows (W7, x64), either in FAT32 or even in FAT. To solve issue, I ran 'diskpart' command in cmd.exe, and cleaned the disk, formatted it with diskpart (and not with Windows Explorer). Now, it works fine.
These tips worked for me, I hope this could help you if you encounter the issue (issue poorly documented!).
Note: for those who are not familiar with Diskpart, here are commands to enter:
Start menu, type 'cmd.exe' then press enter. In the black box, similar to old DOS, type 'diskpart' (and accept security warnings - if prompted to do so). Diskpart opens:
DISKPART> list disk (identify correct drive, your USB key - VERY IMPORTANT!)
DISKPART> select disk [id] (id: number of your USB key - be careful to select your USB drive)
DISKPART> clean (if you selected wrong disk, you erase data of another disk - BE CARFUL!)
DISKPART> convert mbr
DISKPART> create partition primary
DISKPART> select part 1
DISKPART> active
DISKPART> format fs=FAT32
DISKPART> quit