* disable filename validation against characters not support by Windows via -Dunixfs=true
This commit is contained in:
parent
7b82fce064
commit
30a2d5153c
|
@ -208,8 +208,8 @@ public class CmdlineOperations implements CmdlineInterface {
|
|||
String newName = (format != null) ? format.format(new MediaBindingBean(episode, file)) : validateFileName(EpisodeFormat.SeasonEpisode.format(episode));
|
||||
File newFile = new File(outputDir, newName + "." + getExtension(file));
|
||||
|
||||
if (isInvalidFilePath(newFile)) {
|
||||
CLILogger.config("Stripping invalid characters from new name: " + newName);
|
||||
if (isInvalidFilePath(newFile) && !Boolean.parseBoolean(System.getProperty("unixfs"))) {
|
||||
CLILogger.config("Stripping invalid characters from new path: " + newName);
|
||||
newFile = validateFilePath(newFile);
|
||||
}
|
||||
|
||||
|
@ -435,7 +435,7 @@ public class CmdlineOperations implements CmdlineInterface {
|
|||
String newName = (format != null) ? format.format(new MediaBindingBean(movie, file)) : validateFileName(MovieFormat.NameYear.format(movie));
|
||||
File newFile = new File(outputDir, newName + "." + getExtension(file));
|
||||
|
||||
if (isInvalidFilePath(newFile)) {
|
||||
if (isInvalidFilePath(newFile) && !Boolean.parseBoolean(System.getProperty("unixfs"))) {
|
||||
CLILogger.config("Stripping invalid characters from new path: " + newName);
|
||||
newFile = validateFilePath(newFile);
|
||||
}
|
||||
|
|
|
@ -161,7 +161,7 @@ class ValidateDialog extends JDialog {
|
|||
|
||||
for (int i = 0; i < source.size(); i++) {
|
||||
// invalid file names are also invalid file paths
|
||||
if (isInvalidFilePath(source.get(i))) {
|
||||
if (isInvalidFilePath(source.get(i)) && !Boolean.parseBoolean(System.getProperty("unixfs"))) {
|
||||
invalidFilePaths.addIndex(i);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue