Rename Folders

Any questions? Need some help?
Post Reply
vletroye
Posts: 40
Joined: 27 Sep 2014, 11:25

Rename Folders

Post by vletroye »

Hi, I have a question about the process of renaming folders

When I use a format that rename the folder containing the movie (original file), the original folder is not deleted...
Is there any trick to delete an empty folder after renaming (moving) the content ?

I am now renaming several 100th of folders and it's a mess... :/

Googling for a tip, it seems to me that there could be a "clean" option:

Code: Select all

// clean empty folders, clutter files, etc after move
if (clean) {
	if (['COPY', 'HARDLINK'].find{ it.equalsIgnoreCase(_args.action) } && tempFiles.size() > 0) {
		_log.info 'Clean temporary extracted files'
		// delete extracted files
		tempFiles.findAll{ it.isFile() }.sort().each{
			_log.finest "Delete $it"
			it.delete()
		}
		// delete remaining empty folders
		tempFiles.findAll{ it.isDirectory() }.sort().reverse().each{
			_log.finest "Delete $it"
			if (it.getFiles().isEmpty()) it.deleteDir()
		}
	}
But I don't know what's this option ?!
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Rename Folders

Post by rednoah »

I guess you're using the amc script. I guess you didn't read the docs.
--def clean=y Automatically remove empty folders and clutter files that may be left behind after moving the video files or temporary extracted files after copying
@see http://www.filebot.net/forums/viewtopic ... =215#p1561

Otherwise there's the cleaner script.

@see http://www.filebot.net/forums/viewtopic ... &t=5#p1341
:idea: Please read the FAQ and How to Request Help.
vletroye
Posts: 40
Joined: 27 Sep 2014, 11:25

Re: Rename Folders

Post by vletroye »

Sorry... I am using the "C:\Program Files\FileBot\filebot.launcher.exe" on Windows Server 2012 Essentials x64. I.e.: the GUI (for dummies like me :D )

I will read carefully the suggested post and see if I can (understand how to) use the script... !

Any plan to integrate that "cleaner" feature in the GUI ?

Thx a lot for pointing me in the right direction!

V.
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Rename Folders

Post by rednoah »

No, the GUI will not allow people (dummies) to mass-delete anything. :D

But you could easily create a Scheduled Task to call the filebot cleaner script once in a while. ;)
:idea: Please read the FAQ and How to Request Help.
vletroye
Posts: 40
Joined: 27 Sep 2014, 11:25

Re: Rename Folders

Post by vletroye »

I am a bit lost... (because the script doesn't seem to do anything...)

To run a script, do I have to use filebot.cmd (to run filebot.jar) or filebot.exe ?
I saw"filebotcmd" in the screenshot here.

Image

But it seems obvious here that one has to use filebot.exe or filebot.launcher.exe... I presume you confirm ?!


Next, I read here, about cli, that one runs scripts using: filebot -script "path/to/script.groovy" args...

But reading your suggested post, it seems that one has to run: filebot -script fn:cleaner /path/to/media/
So I presume that the cli documentation is not the most uptodate one...

(I don't blame!! My own doc is also the very last artefact to be updated when I do implement changes :lol: )

My understanding is that filebot should automatically download the script... Correct ?
I don't see however a file "cleaner.groovy" saved in the setup folder after running the command and the empty folders are still there... So, running in a cmd prompt "filebot.exe -script fn:cleaner V:\MyMovies\" does not seem to do anything (concrete) ?

NB.: My cmd prompt is run as administrator (as I don't have write access in C:\Program Files\FileBot if I am not running as an administrator)... Also, I see the hourglass for maximum one second... And only this file changed in filebot's setup folder : prefs.properties. I don't have anything printed in the console or logged in the eventlog. but redirecting the output streams in a file, I get

Code: Select all

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa3bd5120, pid=10856, tid=10348
#
# JRE version: Java(TM) SE Runtime Environment (8.0_20-b26) (build 1.8.0_20-b26)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.20-b23 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  0xffffffffa3bd5120
#
# Core dump written. Default location: c:\Program Files\FileBot\hs_err_pid10856.mdmp
#
# An error report file with more information is saved as:
# c:\Program Files\FileBot\hs_err_pid10856.log
Compiled method (c1)    2938 1110       3       groovyjarjarantlr.CharScanner::LA (35 bytes)
 total in heap  [0x0000000002f82490,0x0000000002f835e8] = 4440
 relocation     [0x0000000002f825b0,0x0000000002f82670] = 192
 main code      [0x0000000002f82680,0x0000000002f82fa0] = 2336
 stub code      [0x0000000002f82fa0,0x0000000002f83078] = 216
 oops           [0x0000000002f83078,0x0000000002f83080] = 8
 metadata       [0x0000000002f83080,0x0000000002f830b8] = 56
 scopes data    [0x0000000002f830b8,0x0000000002f833d0] = 792
 scopes pcs     [0x0000000002f833d0,0x0000000002f83580] = 432
 dependencies   [0x0000000002f83580,0x0000000002f83588] = 8
 nul chk table  [0x0000000002f83588,0x0000000002f835e8] = 96
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
#





#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa3bd5120, pid=10856, tid=10348
#
# JRE version: Java(TM) SE Runtime Environment (8.0_20-b26) (build 1.8.0_20-b26)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.20-b23 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  0xffffffffa3bd5120
#
# Core dump written. Default location: c:\Program Files\FileBot\hs_err_pid10856.mdmp
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
#

---------------  T H R E A D  ---------------

Current thread (0x000000000256d800):  JavaThread "main" [_thread_in_Java, id=10348, stack(0x00000000026f0000,0x00000000027f0000)]

siginfo: ExceptionCode=0xc0000005, ExceptionInformation=0x0000000000000008 0xffffffffa3bd5120

Registers:
RAX=0x00000001001a7830, RBX=0x0000000000001acb, RCX=0x00000000d5ef74b0, RDX=0x00000000d5e9e920
RSP=0x00000000027ed518, RBP=0x00000000027ed678, RSI=0x00000000d5e9e920, RDI=0x000000001b6fb658
R8 =0x0000000000000001, R9 =0x00000000000000db, R10=0x00000001001a7830, R11=0x0000000002f826a0
R12=0x0000000000000000, R13=0x00000000027ed628, R14=0x0000000000000000, R15=0x000000000256d800
RIP=0xffffffffa3bd5120, EFLAGS=0x0000000000010202

Top of Stack: (sp=0x00000000027ed518)
0x00000000027ed518:   0000000002f7d384 0000000019190480
0x00000000027ed528:   0000000002bef3a3 0000000000000004
0x00000000027ed538:   0000000059526356 00000000d5e9e920
0x00000000027ed548:   0000000000000001 000000001918fc40
0x00000000027ed558:   00000000027ed690 00000000027ed6a8
0x00000000027ed568:   000000001b6aa680 00000000027ed678
0x00000000027ed578:   0000000002f8289c 00000000025692f0
0x00000000027ed588:   000000005950de0b 000000000256d800
0x00000000027ed598:   000000001b68d918 00000000d5e9e920
0x00000000027ed5a8:   0000000000000001 000000000256d800
0x00000000027ed5b8:   000000000256d800 000000001b68d918
0x00000000027ed5c8:   000000005956df1c 00000000027ed6e0
0x00000000027ed5d8:   0000000002f8289c 00000000d5e9e920
0x00000000027ed5e8:   0000000000000001 000000010000000e
0x00000000027ed5f8:   000000000256d800 000000001b68d918
0x00000000027ed608:   000000005956b77a 00000000027ed678 

Instructions: (pc=0xffffffffa3bd5120)
0xffffffffa3bd5100:   
[error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005]

Register to memory mapping:

RAX=0x00000001001a7830 is pointing into metadata
RBX=0x0000000000001acb is an unknown value
RCX=0x00000000d5ef74b0 is an oop
org.codehaus.groovy.antlr.parser.GroovyLexer 
 - klass: 'org/codehaus/groovy/antlr/parser/GroovyLexer'
RDX=0x00000000d5e9e920 is an oop
groovyjarjarantlr.CharBuffer 
 - klass: 'groovyjarjarantlr/CharBuffer'
RSP=0x00000000027ed518 is pointing into the stack for thread: 0x000000000256d800
RBP=0x00000000027ed678 is pointing into the stack for thread: 0x000000000256d800
RSI=0x00000000d5e9e920 is an oop
groovyjarjarantlr.CharBuffer 
 - klass: 'groovyjarjarantlr/CharBuffer'
RDI=0x000000001b6fb658 is pointing into metadata
R8 =0x0000000000000001 is an unknown value
R9 =0x00000000000000db is an unknown value
R10=0x00000001001a7830 is pointing into metadata
R11=0x0000000002f826a0 is at entry_point+32 in (nmethod*)0x0000000002f82490
R12=0x0000000000000000 is an unknown value
R13=0x00000000027ed628 is pointing into the stack for thread: 0x000000000256d800
R14=0x0000000000000000 is an unknown value
R15=0x000000000256d800 is a thread


Stack: [0x00000000026f0000,0x00000000027f0000],  sp=0x00000000027ed518,  free space=1013k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  0xffffffffa3bd5120


---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x0000000019fac000 JavaThread "web-persistent-datasource.data" [_thread_blocked, id=11092, stack(0x000000001b480000,0x000000001b580000)]
  0x0000000019fa7000 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=1212, stack(0x000000001b380000,0x000000001b480000)]
  0x0000000019efb800 JavaThread "web-datasource-lv2.data" [_thread_blocked, id=8864, stack(0x000000001b280000,0x000000001b380000)]
  0x0000000019ef9000 JavaThread "web-datasource-lv3.data" [_thread_blocked, id=10172, stack(0x000000001b180000,0x000000001b280000)]
  0x0000000019fd1000 JavaThread "web-datasource.data" [_thread_blocked, id=9324, stack(0x000000001b080000,0x000000001b180000)]
  0x0000000019fc6000 JavaThread "Statistics Thread-__DEFAULT__-1" daemon [_thread_blocked, id=2348, stack(0x000000001af80000,0x000000001b080000)]
  0x0000000019ffc000 JavaThread "__DEFAULT__" daemon [_thread_blocked, id=9956, stack(0x000000001ac80000,0x000000001ad80000)]
  0x000000001948e800 JavaThread "AnalyticsBackgroundThread" daemon [_thread_blocked, id=3392, stack(0x000000001a780000,0x000000001a880000)]
  0x00000000193e7000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=8976, stack(0x000000001a680000,0x000000001a780000)]
  0x0000000019dbf800 JavaThread "AWT-Shutdown" [_thread_blocked, id=3128, stack(0x000000001a580000,0x000000001a680000)]
  0x0000000019dae800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=7888, stack(0x000000001a480000,0x000000001a580000)]
  0x000000001787d800 JavaThread "Service Thread" daemon [_thread_blocked, id=5668, stack(0x0000000019490000,0x0000000019590000)]
  0x000000001782d800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=10000, stack(0x0000000018f90000,0x0000000019090000)]
  0x0000000017823000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=6536, stack(0x0000000018e90000,0x0000000018f90000)]
  0x000000001781b800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=12616, stack(0x0000000018d90000,0x0000000018e90000)]
  0x000000001781a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=6472, stack(0x0000000018c90000,0x0000000018d90000)]
  0x0000000017818800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7876, stack(0x0000000018b90000,0x0000000018c90000)]
  0x0000000002bc2000 JavaThread "Finalizer" daemon [_thread_blocked, id=12336, stack(0x0000000018a90000,0x0000000018b90000)]
  0x0000000002bbb000 JavaThread "Reference Handler" daemon [_thread_blocked, id=10076, stack(0x0000000018990000,0x0000000018a90000)]
=>0x000000000256d800 JavaThread "main" [_thread_in_Java, id=10348, stack(0x00000000026f0000,0x00000000027f0000)]

Other Threads:
  0x00000000177e7800 VMThread [stack: 0x0000000018890000,0x0000000018990000] [id=11716]
  0x00000000190b3000 WatcherThread [stack: 0x0000000019590000,0x0000000019690000] [id=10744]

VM state:synchronizing (normal execution)

VM Mutex/Monitor currently owned by a thread:  ([mutex/lock_event])
[0x000000000256d1f0] Safepoint_lock - owner thread: 0x00000000177e7800
[0x000000000256cf70] Threads_lock - owner thread: 0x00000000177e7800

Heap:
 PSYoungGen      total 38400K, used 15894K [0x00000000d5580000, 0x00000000da080000, 0x0000000100000000)
  eden space 33280K, 32% used [0x00000000d5580000,0x00000000d6025e90,0x00000000d7600000)
  from space 5120K, 97% used [0x00000000d7600000,0x00000000d7adfbe8,0x00000000d7b00000)
  to   space 5120K, 0% used [0x00000000d9b80000,0x00000000d9b80000,0x00000000da080000)
 ParOldGen       total 87552K, used 80K [0x0000000080000000, 0x0000000085580000, 0x00000000d5580000)
  object space 87552K, 0% used [0x0000000080000000,0x0000000080014010,0x0000000085580000)
 Metaspace       used 14269K, capacity 14528K, committed 14848K, reserved 1062912K
  class space    used 1670K, capacity 1731K, committed 1792K, reserved 1048576K

Card table byte_map: [0x0000000011f90000,0x00000000123a0000] byte_map_base: 0x0000000011b90000

Marking Bits: (ParMarkBitMap*) 0x0000000059c2b460
 Begin Bits: [0x0000000012a50000, 0x0000000014a50000)
 End Bits:   [0x0000000014a50000, 0x0000000016a50000)

Polling page: 0x0000000002550000

CodeCache: size=245760Kb used=3840Kb max_used=3854Kb free=241919Kb
 bounds [0x0000000002bd0000, 0x0000000002fa0000, 0x0000000011bd0000]
 total_blobs=1582 nmethods=1144 adapters=353
 compilation: enabled

Compilation events (10 events):
Event: 1.191 Thread 0x000000001782d800 nmethod 1129 0x0000000002f87cd0 code [0x0000000002f87f60, 0x0000000002f89598]
Event: 1.191 Thread 0x000000001782d800 1134   !   3       java.io.StringReader::read (52 bytes)
Event: 1.191 Thread 0x000000001782d800 nmethod 1134 0x0000000002f8a150 code [0x0000000002f8a300, 0x0000000002f8a9f8]
Event: 1.191 Thread 0x000000001782d800 1135       3       java.io.StringReader::ensureOpen (18 bytes)
Event: 1.191 Thread 0x000000001782d800 nmethod 1135 0x0000000002f8ae50 code [0x0000000002f8afc0, 0x0000000002f8b1e8]
Event: 1.191 Thread 0x000000001782d800 1130       3       groovyjarjarantlr.InputBuffer::consume (11 bytes)
Event: 1.191 Thread 0x000000001782d800 nmethod 1130 0x0000000002f8b290 code [0x0000000002f8b3e0, 0x0000000002f8b530]
Event: 1.191 Thread 0x000000001782d800 1131       3       org.codehaus.groovy.antlr.UnicodeEscapingReader::read (227 bytes)
Event: 1.192 Thread 0x0000000017823000 nmethod 1138 0x0000000002f8e2d0 code [0x0000000002f8e400, 0x0000000002f8e4d8]
Event: 1.192 Thread 0x0000000017823000 1143   !   4       groovyjarjarantlr.CharBuffer::fill (52 bytes)

GC Heap History (2 events):
Event: 0.955 GC heap before
{Heap before GC invocations=1 (full 0):
 PSYoungGen      total 38400K, used 33280K [0x00000000d5580000, 0x00000000d8000000, 0x0000000100000000)
  eden space 33280K, 100% used [0x00000000d5580000,0x00000000d7600000,0x00000000d7600000)
  from space 5120K, 0% used [0x00000000d7b00000,0x00000000d7b00000,0x00000000d8000000)
  to   space 5120K, 0% used [0x00000000d7600000,0x00000000d7600000,0x00000000d7b00000)
 ParOldGen       total 87552K, used 0K [0x0000000080000000, 0x0000000085580000, 0x00000000d5580000)
  object space 87552K, 0% used [0x0000000080000000,0x0000000080000000,0x0000000085580000)
 Metaspace       used 12065K, capacity 12232K, committed 12544K, reserved 1060864K
  class space    used 1458K, capacity 1503K, committed 1536K, reserved 1048576K
Event: 0.968 GC heap after
Heap after GC invocations=1 (full 0):
 PSYoungGen      total 38400K, used 4990K [0x00000000d5580000, 0x00000000da080000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000d7600000)
  from space 5120K, 97% used [0x00000000d7600000,0x00000000d7adfbe8,0x00000000d7b00000)
  to   space 5120K, 0% used [0x00000000d9b80000,0x00000000d9b80000,0x00000000da080000)
 ParOldGen       total 87552K, used 80K [0x0000000080000000, 0x0000000085580000, 0x00000000d5580000)
  object space 87552K, 0% used [0x0000000080000000,0x0000000080014010,0x0000000085580000)
 Metaspace       used 12065K, capacity 12232K, committed 12544K, reserved 1060864K
  class space    used 1458K, capacity 1503K, committed 1536K, reserved 1048576K
}

Deoptimization events (1 events):
Event: 0.424 Thread 0x000000000256d800 Uncommon trap: reason=range_check action=make_not_entrant pc=0x0000000002db31e0 method=sun.reflect.generics.parser.SignatureParser.current()C @ 34

Internal exceptions (10 events):
Event: 1.177 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5f8ddb8) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.177 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5f94b78) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.178 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5f98110) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.179 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fa2748) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.180 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fa6460) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.181 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fa8df0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.181 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fac280) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.181 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5faf290) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.183 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fb5730) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]
Event: 1.185 Thread 0x000000000256d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5fb95a0) thrown at [D:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u20\1074\hotspot\src\share\vm\prims\jvm.cpp, line 1275]

Events (10 events):
Event: 1.181 loading class groovyjarjarantlr/TokenBuffer
Event: 1.181 loading class groovyjarjarantlr/TokenBuffer done
Event: 1.181 loading class groovyjarjarantlr/TokenQueue
Event: 1.181 loading class groovyjarjarantlr/TokenQueue done
Event: 1.181 loading class groovyjarjarantlr/ASTFactory
Event: 1.181 loading class groovyjarjarantlr/ASTFactory done
Event: 1.183 loading class groovyjarjarantlr/ASTPair
Event: 1.183 loading class groovyjarjarantlr/ASTPair done
Event: 1.185 loading class groovyjarjarantlr/collections/impl/ASTArray
Event: 1.185 loading class groovyjarjarantlr/collections/impl/ASTArray done


Dynamic libraries:
0x000007f763700000 - 0x000007f763734000 	C:\Program Files\Java\jre1.8.0_20\bin\javaw.exe
0x000007f988910000 - 0x000007f988ace000 	C:\Windows\SYSTEM32\ntdll.dll
0x000007f988440000 - 0x000007f988577000 	C:\Windows\system32\KERNEL32.DLL
0x000007f985860000 - 0x000007f985954000 	C:\Windows\system32\KERNELBASE.dll
0x000007f987800000 - 0x000007f9878de000 	C:\Windows\system32\ADVAPI32.dll
0x000007f988090000 - 0x000007f9881dc000 	C:\Windows\system32\USER32.dll
0x000007f982cb0000 - 0x000007f982f1a000 	C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9200.16579_none_418ab7ef718b27ef\COMCTL32.dll
0x000007f987d40000 - 0x000007f987de5000 	C:\Windows\system32\msvcrt.dll
0x000007f987df0000 - 0x000007f987e38000 	C:\Windows\SYSTEM32\sechost.dll
0x000007f987e80000 - 0x000007f987fc5000 	C:\Windows\system32\RPCRT4.dll
0x000007f986370000 - 0x000007f9864b1000 	C:\Windows\system32\GDI32.dll
0x000007f987e40000 - 0x000007f987e79000 	C:\Windows\system32\IMM32.DLL
0x000007f9887f0000 - 0x000007f988906000 	C:\Windows\system32\MSCTF.dll
0x0000000059cb0000 - 0x0000000059d82000 	C:\Program Files\Java\jre1.8.0_20\bin\msvcr100.dll
0x0000000059450000 - 0x0000000059ca8000 	C:\Program Files\Java\jre1.8.0_20\bin\server\jvm.dll
0x000007f976400000 - 0x000007f976409000 	C:\Windows\SYSTEM32\WSOCK32.dll
0x000007f9698e0000 - 0x000007f969900000 	C:\Windows\SYSTEM32\WINMM.dll
0x000007f9881e0000 - 0x000007f9881e7000 	C:\Windows\system32\PSAPI.DLL
0x000007f988270000 - 0x000007f9882c8000 	C:\Windows\system32\WS2_32.dll
0x000007f969880000 - 0x000007f9698b3000 	C:\Windows\SYSTEM32\WINMMBASE.dll
0x000007f987fd0000 - 0x000007f987fd9000 	C:\Windows\system32\NSI.dll
0x000007f985ba0000 - 0x000007f985bef000 	C:\Windows\SYSTEM32\cfgmgr32.dll
0x000007f985ca0000 - 0x000007f985cc2000 	C:\Windows\system32\DEVOBJ.dll
0x0000000059440000 - 0x000000005944f000 	C:\Program Files\Java\jre1.8.0_20\bin\verify.dll
0x0000000059410000 - 0x0000000059438000 	C:\Program Files\Java\jre1.8.0_20\bin\java.dll
0x00000000593f0000 - 0x0000000059406000 	C:\Program Files\Java\jre1.8.0_20\bin\zip.dll
0x000007f9864c0000 - 0x000007f9877a0000 	C:\Windows\system32\SHELL32.dll
0x000007f985fc0000 - 0x000007f986170000 	C:\Windows\SYSTEM32\combase.dll
0x000007f9881f0000 - 0x000007f988240000 	C:\Windows\system32\SHLWAPI.dll
0x000007f9832b0000 - 0x000007f983345000 	C:\Windows\SYSTEM32\SHCORE.dll
0x000007f985820000 - 0x000007f985835000 	C:\Windows\system32\profapi.dll
0x00000000593d0000 - 0x00000000593ea000 	C:\Program Files\Java\jre1.8.0_20\bin\net.dll
0x000007f984f90000 - 0x000007f984fec000 	C:\Windows\system32\mswsock.dll
0x00000000593b0000 - 0x00000000593c1000 	C:\Program Files\Java\jre1.8.0_20\bin\nio.dll
0x0000000059210000 - 0x00000000593a8000 	C:\Program Files\Java\jre1.8.0_20\bin\awt.dll
0x000007f988720000 - 0x000007f9887e3000 	C:\Windows\system32\OLEAUT32.dll
0x000007f96c000000 - 0x000007f96c09f000 	C:\Windows\system32\apphelp.dll
0x000007f9830c0000 - 0x000007f9830e1000 	C:\Windows\system32\DWMAPI.DLL
0x000007f983bd0000 - 0x000007f983cb6000 	C:\Windows\system32\uxtheme.dll
0x000007f986170000 - 0x000007f9862ee000 	C:\Windows\system32\ole32.dll
0x000007f985770000 - 0x000007f98577a000 	C:\Windows\SYSTEM32\CRYPTBASE.dll
0x000007f985570000 - 0x000007f9855cc000 	C:\Windows\SYSTEM32\bcryptPrimitives.dll
0x000007f984dd0000 - 0x000007f984e68000 	C:\Windows\SYSTEM32\DNSAPI.dll
0x000007f980b70000 - 0x000007f980b78000 	C:\Windows\System32\rasadhlp.dll
0x000007f984780000 - 0x000007f9847aa000 	C:\Windows\SYSTEM32\IPHLPAPI.DLL
0x000007f984370000 - 0x000007f98437a000 	C:\Windows\SYSTEM32\WINNSI.DLL
0x000007f981580000 - 0x000007f9815e1000 	C:\Windows\System32\fwpuclnt.dll
0x000007f979670000 - 0x000007f979684000 	C:\Windows\system32\napinsp.dll
0x000007f983790000 - 0x000007f9837a6000 	C:\Windows\system32\NLAapi.dll
0x000007f979620000 - 0x000007f979632000 	C:\Windows\System32\winrnr.dll
0x000007f984ff0000 - 0x000007f98500a000 	C:\Windows\SYSTEM32\CRYPTSP.dll
0x000007f984c90000 - 0x000007f984cdb000 	C:\Windows\system32\rsaenh.dll
0x000007f985cd0000 - 0x000007f985cef000 	C:\Windows\system32\USERENV.dll
0x000007f9814c0000 - 0x000007f9814d3000 	C:\Windows\SYSTEM32\dhcpcsvc6.DLL
0x000007f9814a0000 - 0x000007f9814b8000 	C:\Windows\SYSTEM32\dhcpcsvc.DLL
0x000007f975380000 - 0x000007f9754e3000 	C:\Windows\system32\DBGHELP.DLL

VM Arguments:
jvm_args: -Dapplication.deployment=portable -Dapplication.dir=c:\Program Files\FileBot -Duser.home=c:\Program Files\FileBot -Dapplication.warmup=false -Dapplication.analytics=true -Djava.net.useSystemProxies=false -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -DuseNativeShell=false -DuseExtendedFileAttributes=true -DuseCreationDate=false -Djava.io.tmpdir=c:\Program Files\FileBot\temp -Djna.library.path=c:\Program Files\FileBot -Djava.library.path=c:\Program Files\FileBot -Djna.nosys=true -Dnet.filebot.AcoustID.fpcalc=c:\Program Files\FileBot\fpcalc.exe -Djava.util.prefs.PreferencesFactory=net.filebot.util.prefs.FilePreferencesFactory -Dnet.filebot.util.prefs.file=c:\Program Files\FileBot\prefs.properties 
java_command: c:\Program Files\FileBot\FileBot.jar -script fn:cleaner V:\Movies\Cartoons 3D
java_class_path (initial): c:\Program Files\FileBot\FileBot.jar
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\FileBot\;;C:\Program Files\Java\jre1.8.0_20\bin
USERNAME=Admin
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 15 Stepping 11, GenuineIntel



---------------  S Y S T E M  ---------------

OS: Windows Server 2012 , 64 bit Build 9200 

CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 15 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, tsc

Memory: 4k page, physical 8387112k(3951084k free), swap 16775720k(12196008k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.20-b23) for windows-amd64 JRE (1.8.0_20-b26), built on Jul 30 2014 13:51:23 by "java_re" with MS VC++ 10.0 (VS2010)

time: Tue Nov 04 22:03:29 2014
elapsed time: 2 seconds (0d 0h 0m 2s)
vletroye
Posts: 40
Joined: 27 Sep 2014, 11:25

Re: Rename Folders

Post by vletroye »

If I rollback to the latest stable release and I don't have such an error... the filebot.log file contains now
Done ?(?????)?
and the error log.
nov. 04, 2014 10:25:11 PM net.filebot.Main initializeCache
WARNING: App version (r2600) does not match cache version (r2612): reset cache
To use the latest build instead of the latest stable version, I did simply unzip the FileBot_4.5-portable.zip into "C:\Program Files\FileBot" (overwriting existing files). That was my stupid mistake :(

If I run the latest build from a clean temp folder, I get an empty filebot.log and error.log

sorry :(
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Rename Folders

Post by rednoah »

1.
It's "filebot". The screenshot you got is outdated. The cmd will then run filebot.exe as long as it's in the PATH.

2.
It's filebot -script <script location> <args> where script location can be a local path, or URL, or fn:name syntax or other stuff. You will never see a script "file", unless you wrote one yourself. Scripts downloaded from remote locations are cached internally.

3.
Ignored the warning messages.

4.
If you post pages of logs, use pastebin, or at the very least CODE tags.

5.
You can't replace the installed version with the portable. Only replacing the jar should do, and work.

6.
If it just says DONE then it run successfully, and just did nothing. There can be many reasons for this.
:idea: Please read the FAQ and How to Request Help.
vletroye
Posts: 40
Joined: 27 Sep 2014, 11:25

Re: Rename Folders

Post by vletroye »

4. > Sorry :oops: . I will remind this advice!

And thx a ton for clarifying to me the other points!

V.
Post Reply