We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a file is deleted and then added, a zombie situation occurs,don't know why? The code is as follows:
public void addFile(File file, String mtpPath) throws FileNotFoundException, IOException, COMException { deleteFile(file.getName(), mtpPath); String lastpartofpath = mtpPath.substring(mtpPath.lastIndexOf("\\") + 1); PortableDeviceStorageObject storage = getStorage(); PortableDeviceFolderObject folder = MTPUtil.createFolder(mtpPath, storage, null, lastpartofpath); PortableDeviceAudioObject object = folder.addAudioObject(file, "--", "--", new BigInteger("0")); //LogUtil.debugPrint(LogUtil.LOG_LEVEL_LESS, this.getClass().getSimpleName(), "Copied " + file.getAbsolutePath() + " to " + mtpPath // + " on " + getDevice().getModel()); }
The zombie code is 212 lines in the PortableDeviceImplWin32 class :
PortableDeviceContentImplWin32 content = this.getDeviceContent();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a file is deleted and then added, a zombie situation occurs,don't know why?
The code is as follows:
The zombie code is 212 lines in the PortableDeviceImplWin32 class :
PortableDeviceContentImplWin32 content = this.getDeviceContent();
The text was updated successfully, but these errors were encountered: