soulhealer Posted January 3, 2009 Posted January 3, 2009 how to save IE object cookies and then restore them(or it) later? is that possible?
FireFox Posted January 3, 2009 Posted January 3, 2009 @soulhealer Maybe... $what = InputBox('Cookie', '"move" for move cookies to desktop' & @CRLF & '"replace" to replace them to original folder', 'move', '', 250, 150) If $what = "move" Then DirCreate(@DesktopDir & "\Cookies") FileMove(@HomePath & "\Cookies\*.txt", @DesktopDir & "\Cookies\", 9) ElseIf $what = "replace" Then FileMove(@DesktopDir & "\Cookies\*.txt", @HomePath & "\Cookies\", 9) DirRemove(@DesktopDir & "\Cookies") EndIf Cheers, FireFox.
soulhealer Posted January 3, 2009 Author Posted January 3, 2009 @soulhealer Maybe... $what = InputBox('Cookie', '"move" for move cookies to desktop' & @CRLF & '"replace" to replace them to original folder', 'move', '', 250, 150) If $what = "move" Then DirCreate(@DesktopDir & "\Cookies") FileMove(@HomePath & "\Cookies\*.txt", @DesktopDir & "\Cookies\", 9) ElseIf $what = "replace" Then FileMove(@DesktopDir & "\Cookies\*.txt", @HomePath & "\Cookies\", 9) DirRemove(@DesktopDir & "\Cookies") EndIf Cheers, FireFox. aw, i didn't thought that easy thanks a lot.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now