Jump to content

sangoku

Members
  • Posts

    153
  • Joined

  • Last visited

    Never

Everything posted by sangoku

  1. Hy i have a string like SomeThing ... usually i use explode when i do it... but how can i make this thing to explode??? except that i go trough the string char for char and compare if it is upper or lower case...QQ
  2. Anyone????? :'( :'( :'( :'( :'( :'(
  3. Hy i have a script which runs for a long time and on the begining i need it to output a confirmation that the data entered are correct ... ... .. echo some data echo some data ... ... reallllyyy long execution time now i need somehow to output the echoed strings before the script executes until the end... what is the command for it???? i toth it is ob_flush ( void ) but i am wrong... how can i do it?
  4. lolls messed up with forms.... Q.Q X-D
  5. ok here is the complete script if someone can figure how to make it work pls help me out here.... i am on end with my Latin.... here is cleanupScript.php <?php //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// $password = 'password1'; //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// /** * */ /** * @copyright at ©[email protected], all rights reserverd 2009-2010 * @author Siniša Čulić * @version 1.0 * @created 31-mar-2010 13:51:17 */ session_name('cleanup'); //we set the session name session_start(); //we start the session cleanup //$remaining_time = $_SESSION['remaining'] ; //set the remaining time of the script to 0 for no note sake XD //unset($_SESSION['cleanup_in_progress']) ; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Parameter setings</title> <style type="text/css"> body{ color:#555555; font-size:13px; background: #eeeeee; font-family:Arial, Helvetica, sans-serif; width: 100%; margin-left: 5%; margin-bottom: 12 px; } .alert{ color: #110259; font-size: 4em; font-family: cursive; } .note{ font-size: 0.9 em; color: #006; } .database_data{ background-color: #969696; width: 90%; padding: 12px; border: #808080; border-width: thick; border-style: groove; margin: 5px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px } .data{ background-color: #969696; width: 40%; padding: 12px; border: #808080; border-width: thick; border-style: dashed; margin-left: 40px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } .imposible{ background-color: #FFFFFF; width: 42%; font-size: 2em; padding: 12px; border: #808080; border-width: thin; border-style: dashed; margin-left: 40px; margin:1em; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; text-align: center; } .header{ background-color: #FFFFFF; width: 50%; font-size: 2em; padding: 12px; border: #808080; border-width: thin; border-style: outset; margin-left: 40px; margin:1em; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px; text-align: center; font-family: cursive; font-size: 4em; } .button{ font-family: Arial, Helvetica, sans-serif; font-size: 3em; } </style> </head> <body> <?php $comparingValues = array(); $counter; if ($password =='password'){ echo '<div class="alert">change the pasword!!!!!!</div>'; return false; } $start_time = $_SESSION['start_time'] ; $execution_time = $_SESSION['execution_time']; $remaining_time = time() - $start_time + $execution_time; //if we execdet the script execution time then we unset the session //if the sesion variable is set then we archive the execution time and start time of the script if(isset($_SESSION['cleanup_in_progress'])){ if($remaining_time <= 0){ echo '<div class="alert">script complete, <a href="runingScript.php" >GO here!</a> </div>'; unset ($_SESSION['cleanup_in_progress']); die; } } //if the user entered all needet data we can then make the script do its work if(!isset($_SESSION['cleanup_in_progress']) and isset($_POST['DBname'],$_POST['host'],$_POST['DBusername'],$_POST['DBpassword'],$_POST['directory'],$_POST['pagePassword'],$_POST['exectutionTime'],$_POST['delayTime'],$_POST['attachment'])) { echo '<div class="alert">all entered data was filed in</div><br/>'; $_SESSION['cleanup_in_progress'] = true; $_SESSION['start_time'] = time(); $_SESSION['execution_time'] = $_POST['delayTime']; $dir=$_POST['directory']; if($_POST['delayTime'] == '' and !is_int($_POST['delayTime'])){ $delay_time = 0; }else{ $delay_time =1000 * $_POST['delayTime']; } //here we seee in what value we set the execution time either in minutes or seconds if($_POST['mesurment'] =='minutes'){ $time = $_POST['exectutionTime'] * 60; }else{ $time = $_POST['exectutionTime']; } $partitoning = $_POST['partitioning']; $_SESSION['partitioning'] = $partitoning; set_time_limit($time+15); $dir = $_POST['directory']; $finishingTIme = time() + $time; if(is_dir($dir)){ $dir_content =getDirectoryContent($dir); $_SESSION['folderLocation'] = $dir; $link = mysql_connect($_POST['host'],$_POST['DBusername'],$_POST['DBpassword']) or die('<div class="alert">cant connect to mysql!!!</div>'); mysql_select_db($_POST['DBname'],$link) or die ('<div class="alert">incorect DB name</div>'); if ($_POST['attachment'] !==''){ $name = $_POST['attachment'] ; }else{ $name = 'attachment'; } if(!isset($_SESSION['controlLocation'])){ $_SESSION['controlLocation'] = 0; } echo 'the script is executing, close this page <a href="JavaScript:window.close()">Close</a> </body> </html>'; session_commit(); do { $file = array_pop($dir_content); if(is_file($dir.'/'.$file)){ if(bufferQuerry($file)){ usleep($delay_time); $time = time(); $con = $finishingTIme - $time; if ($finishingTIme <= time()){ storeRemainingData($dir_content); session_name('cleanup'); //we set the session name session_start(); unset ($_SESSION['cleanup_in_progress']); $host = $_SERVER['HTTP_HOST']; $uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\'); $extra = 'cleanupScript.php'; session_commit(); header("Location: http://$host$uri/$extra"); exit; } }else{ $_SESSION['eror'] = '<div class="alert">there was an folder reading eror</div>'; echo'<div class="alert">there was an folder reading eror</div>'; die; } } } while ($file !== null); $counter = $partitoning + 5; bufferQuerry('none'); } } function bufferQuerry($file){ global $comparingValues; global $counter; global $partitoning; global $link; if ($partitoning <= $counter){ $counter = 0; $sql ="SELECT `filename` FROM `attachment` WHERE"; foreach($comparingValues as $name){ $sql.= " `filename` = '$name' or "; } $sql = trim($sql,' or'); $result = mysql_query($sql,$link); if ($result){ return checkResultsOfTheQuery($result); }else return false; } else { $counter++ ; $comparingValues[] = $file; return true; } } function checkResultsOfTheQuery($resultSql){ global $comparingValues; if(!$resultSql) return false; $result = array(); if(mysql_num_rows($resultSql)){ foreach (mysql_fetch_array($resultSql) as $row){ $result[] = $row; } }else{ $result = array(); } $diference = array_diff($comparingValues,$result); $comparingValues = array(); if($diference){ return MissingFIle($diference); } else return true; } function MissingFIle($files){ $option = $_POST['delete']; $moveFolder = $_POST['movingFolder']; $originalFolder = $_POST['directory']; if(!is_dir($moveFolder)){ $_SESSION['eror'] ='<div class="alert">The specified rouge folder is not a folder</div>'; echo '<div class="alert">The specified rouge folder is not a folder</div>'; die; } if(!is_writable($moveFolder)){ $_SESSION['eror'] ='<div class="alert">cant write to the rouge files folder</div>'; echo '<div class="alert">cant write to the rouge files folder</div>'; die; } if($option == 'move'){ foreach ($files as $filename){ rename($originalFolder.'/'.$filename, $moveFolder.'/'.$filename); logDeletion($filename); } }else{ foreach ($files as $filename){ unlink($originalFolder.'/'. $filename); logDeletion($filename); } } return true; } function logDeletion($file){ $content =$file." " ; if(file_put_contents($_SERVER['SCRIPT_FILENAME'].'.log.txt',$content, FILE_APPEND)){ return true; } } function storeRemainingData($handler){ $unserialize = serialize($handler); $fp=fopen("dirContent.txt","w"); $result = fwrite($fp,$unserialize); if($result) return true; else return false; } function getDirectoryContent($location){ if($_SESSION['folderLocation'] == $location){ if (is_file('dirContent.txt')){ $data=file_get_contents("dirContent.txt","r"); $array = unserialize($data); return $array; }else{ return scandir($location,1); } } else { return scandir($location,1); } } ?> and here is runingScript.php <?php /** * @copyright at ©[email protected], all rights reserverd 2009-2010 * @author Siniša Čulić * @version 1.0 * @created 31-mar-2010 13:51:17 */ session_name('cleanup'); //we set the session name session_start(); //we start the session cleanup //$remaining_time = $_SESSION['remaining'] ; //set the remaining time of the script to 0 for no note sake XD //unset($_SESSION['cleanup_in_progress']) ; //here we open the log file and put it into a string if(is_file($_SERVER['SCRIPT_FILENAME'].'.log.txt')){ $logFile = file_get_contents ($_SERVER['SCRIPT_FILENAME'].'.log.txt'); }else $logFile = 'Nothing so far'; $start_time = $_SESSION['start_time'] ; $execution_time = $_SESSION['execution_time']; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Parameter setings</title> <style type="text/css"> body{ color:#555555; font-size:13px; background: #eeeeee; font-family:Arial, Helvetica, sans-serif; width: 100%; margin-left: 5%; margin-bottom: 12 px; } .alert{ color: #110259; font-size: 4em; font-family: cursive; } .note{ font-size: 0.9 em; color: #006; } .database_data{ background-color: #969696; width: 90%; padding: 12px; border: #808080; border-width: thick; border-style: groove; margin: 5px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px } .data{ background-color: #969696; width: 40%; padding: 12px; border: #808080; border-width: thick; border-style: dashed; margin-left: 40px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } .imposible{ background-color: #FFFFFF; width: 42%; font-size: 2em; padding: 12px; border: #808080; border-width: thin; border-style: dashed; margin-left: 40px; margin:1em; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; text-align: center; } .header{ background-color: #FFFFFF; width: 50%; font-size: 2em; padding: 12px; border: #808080; border-width: thin; border-style: outset; margin-left: 40px; margin:1em; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px; text-align: center; font-family: cursive; font-size: 4em; } .button{ font-family: Arial, Helvetica, sans-serif; font-size: 3em; } </style> </head> <body> <div class="header">Your personall Cleanup script X-D</div> <div class="data" <?php if(isset($_SESSION['cleanup_in_progress'])){ echo "style='display:none'"; } ?> > <form action="" method="post" target="cleanupScript.php" > <div class="database_data"> Enter this page paswoord <br/> <input type="password" class="pagePassword" name="pagePassword" value="password1" size="38" ><br/> <div class="note">Open the file in editor you will see the password CHANGE IT!!!</div> Host name <input type="text" name="host" size="25" value="localhost" ><br/> Database name <input type="text" name="DBname" size="20" value="test" ><br/> <div class="note"> <p>Enter the database name<br> In which the attachment table is located</p> </div> <br/> Database username <input type="text" name="DBusername" size="45" value="root" ><br/> Database password <input type="password" name="DBpassword" size="45" ><br/> I you changed the name of the table attachment then put its name here:<br/> <input type="text" size="10" name="attachment" value=""><br/> <div class="note">Else LEAVE the field empty!!! </div> <br/><br/> Attachment directorry<br/> <input type="text" name="directory" value="c:/test" size="68"><br/> <div class="note">Enter the directory of your attachments</div> </div> <div class="options"> Script execution time <input type="text" name="exectutionTime" value="10" size="5" ><br/> <input type="radio" name="mesurment" value="seconds" checked="checked">in seconds<br/> <input type="radio" name="mesurment" value="minutes">in minutes<br/> Script delay time <input type="text" name="delayTime" size="6" ><br/> <div class="note">In miliseconds</div><br/> select if you want to delete or just move the invalid attachments to a folder<br/> <div class="imposible"> <input type="radio" name="delete" value="delete">delete <br/> <input type="radio" name="delete" value="move" checked="checked"> move <br/> </div> folder for rougue files: <input type="text" name="movingFolder" value="c:/test/New"> <br/> input the SQL partitoning size<input type="text" name="partitioning" value="10" size="5"><br/> <div class="note">this value mesures how many files at once will be compared against the Database </div> <br/> <br/> </div> <input type="submit" name="submit" value="Execute the script!" class="button" /> </form> </div> <div class="status" <?php if(!isset($_SESSION['cleanup_in_progress'])){ echo "style='display:none'"; } ?> > Remaining time of the cleanup:<div class="big"><?php echo $remaining_time ?><div/> <br/> Duplicate files so far found are:<br/> <textarea cols="80" rows="50"> <?php print_r($logFile);?> </textarea> </div> </body> </html> just create a test database with the table attachment and corresponding row, make a file on c called test and place random files in it i make endless copies of new folder.... and you can run it can someone figure out why it wont show the progress of the files i found this in php help void session_write_close ( void ) Session data is usually stored after your script terminated without the need to call session_write_close(), but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. When using framesets together with sessions you will experience the frames loading one by one due to this locking. You can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done. i do close the session but the server wont let me access the data Q.Q
  6. IT is NOT possible to make anything from client side!!! I CAN ONLY execute the script on server side!!! and the damn server just wont let me acess the session data because the script that is in execution uses it Q.Q i will see if i can bypass it somehow.....
  7. cant do becouse the script gets stuck in a looooooooooooooooooong loop whihc requires server functions...
  8. Hy i am making a script which should by first run execute ti self, and show me some data..(works so far) later when i pres submit the page should reload it self and do some file manipulation.... works to BUT i wanted the file to show me the current status of the comparison.... so i made it so it shows the curent state.... but the thing is, as long the script runs i cant see the page... it puts me on the holding line QQ... how can i bypass this... except making the stat file outside the file .....
  9. :'( are you for real? did you even read the question anyway, i solved it XD
  10. How can i store a result from scandir($dir) and later scope trough the record?? anyone has any idea??? i would like to be able to continue from some location...
  11. I have a script which runs in background and does some cleanups... I am however in a confusion will a script continue to operate after she sends out a redirection header???? I think it will but i am not certain....... duos someone know it?
  12. :'( :-\ Sorry to tell you but I know exactly what i am doing. 4. year IT engineering...... I only ask when i dont know how to do what i wana do.....
  13. noo need foun the answer.... if(mysql_num_rows($resultSql)){ foreach (mysql_fetch_array($resultSql) as $row){ $result[] = $row; } }else{ $result = array(); } num rows is a good one XD
  14. O boy i need straight answers... that happens when by chance there is no match in the db.... usually there are more than one.... AND i dont want notifications
  15. how can i bypass when a query returns an empty result but that result is fetched by a for each loop mean the warning mean this: foreach (mysql_fetch_array($resultSql) as $row){ $result[] = $row; }
  16. nice idea but I have something more advanced in mind here is my current version of the file, the only problem is now to sore the so far read data.... and i think i should store the data of the scandir somwhere to... iam thinking of the ini file as a tem storage.... what do zou think??? ye i know the code is pretty messy.... <?php /** * @copyright at ©[email protected], all rights reserverd 2009-2010 * @author Siniša Čulić * @version 1.0 * @created 31-mar-2010 13:51:17 */ //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// $password = 'password1'; //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// //////////change this pasword to your personal one//// /** * */ $comparingValues = array(); $counter; if ($password =='password'){ echo '<div class="alert">change the pasword!!!!!!</div>'; return false; } session_name('cleanup'); if(isset($_SESSION['cleanup_in_progress'])){ }else{ if(!isset( $_POST['DBname'],$_POST['host'],$_POST['DBusername'],$_POST['DBpassword'],$_POST['directory'],$_POST['pagePassword'],$_POST['exectutionTime'],$_POST['delayTime'],$_POST['attachment'])){ $_SESSION['cleanup_in_progress'] = true; $_SESSION['start_time'] = time(); $_SESSION['execution_time'] = $_POST['delayTime']; $dir=$_POST['directory']; if($_POST['mesurment'] =='minutes'){ $time = int($_POST['exectutionTime']) * 60; }else{ $time = int($_POST['exectutionTime']); } $partitoning = $_POST['partitioning']; $_SESSION['partitioning'] = $partitoning; set_time_limit($time); $dir = $_POST['directory']; if(is_dir($dir)){ $dir_content = scandir($dir); $link = mysql_connect($_POST['host'],$_POST['DBusername'],$_POST['DBpassword']) or die('<div class="alert">cant connect to mysql!!!</div>'); mysql_select_db($_POST['DBname'],$link) or die ('<div class="alert">incorect DB name</div>'); if ($_POST['attachment'] !==''){ $name = $_POST['attachment'] ; }else{ $name = 'attachment'; } foreach($dir_content as $file){ if(is_file($file)){ if(bufferQuerry($file)){ /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! /// need to put a storage way in here !!!!!!!! }else{ $_SESSION['eror'] = '<div class="alert">there was an folder reading eror</div>'; echo'<div class="alert">there was an folder reading eror</div>'; die; } } } } } } function bufferQuerry($file){ global $comparingValues; global $counter; global $partitoning; if ($partitoning >= $counter){ $sql ="SELECT `filename` FROM `attachment` WHERE"; foreach($comparingValues as $name){ $sql.= " `filename` = $name or "; } trim($sql,' or'); $result = mysql_query($sql,$link); if ($result){ return heckResultsOfTheQuery($result); }else return false; } else { $counter++ ; $comparingValues[] = $file; return true; } } function checkResultsOfTheQuery($result){ global $comparingValues; if(!$result) return false; foreach (mysql_fetch_array($result) as $row){ $result[] = $row[0]; } $diference = array_diff($result,$comparingValues); if($diference){ return MissingFIle($diference); } else return true; $comparingValues = array(); } function MissingFIle($files){ $option = $_POST['delete']; $moveFolder = $_POST['movingFolder']; $originalFolder = $_POST['directory']; if(!is_dir($moveFolder)){ $_SESSION['eror'] ='<div class="alert">The specified rouge folder is not a folder</div>'; echo '<div class="alert">The specified rouge folder is not a folder</div>'; die; } if(!is_writable($moveFolder)){ $_SESSION['eror'] ='<div class="alert">cant write to the rouge files folder</div>'; echo '<div class="alert">cant write to the rouge files folder</div>'; die; } if($option == 'move'){ foreach ($files as $filename){ rename($originalFolder.'/'.$filename, $moveFolder.'/'.$filename); } }else{ foreach ($files as $filename){ unlink($originalFolder.'/'. $filename); } } } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Parameter setings</title> <link rel="stylesheet" type="text/css" href="my.css"> </head> <body> <div class="data" <?php if(isset($_SESSION['cleanup_in_progress'])){ echo "style='display:none'"; } ?> > <form action="" method="post" > <div class="database data"> Host name <input type="text" name="host" value="enter host name" size="45" ><br/> Database name <input type="text" name="DBname" value="Enter the DB name" size="45" ><br/> Database username <input type="text" name="DBusername" value="Enteher here your DB username" size="45" ><br/> Database password <input type="password" name="DBpassword" size="45" ><br/> I you changed the name of the table attachment then put its name here:<br/> <input type="text" size="10" name="attachment" value=""><br/> Else LEAVE the field empty!!!<br/><br/> Upload Directorry<br/> <input type="text" name="directory" value="Enter here the directory you want to be cleaned" size="45" ><br/> </div> Database Page Paswoord <br/><input type="password" class="pagePassword" name="pagePassword" size="45" ><br/> <div class="options"> Script execution time <input type="text" name="exectutionTime" value="10" size="10" ><br/> <input type="radio" name="mesurment" value="seconds" checked="checked">in seconds<br/> <input type="radio" name="mesurment" value="minutes">in minutes<br/> Script delay time <input type="text" name="delayTime" value="in miliseconds" size="45" ><br/> select if you want to delete or just move the invalid attachments to a folder<br/> <input type="radio" name="delete" value="delete" checked="checked">delete <input type="radio" name="delete" value="move"> move <br/> folder for rougue files: <input type="text" name="movingFolder"><br/> input the SQL partitoning size<input type="text" name="partitioning" value="10"><br/> this value mesures how many files at once will be compared against the Database <br/> <br/> </div> <input type="submit" name="submit" value="exectute the script!" class="bt_register" /> </form> </div> <div class="status" <?php if(!isset($_SESSION['cleanup_in_progress'])){ echo "style='display:none'"; } ?> > Remaining time of the cleanup: <br/> Duplicate files so far found are:<br/> </div> </body> </html> you have any ideas
  17. nope..... stream_get_contents dos not work... it should but it duos not.... QQ
  18. nope im not XD The thing is this I am making a cleanup script for a frend which has a forum which has GIANT attachments masses. But his forum engine has leaks and sometimes when he deletes stuff has a crash ect... files get out of sync and he has now mass of files that are not in his DB he wants me to move them into a folder or delete them now i have his att folder and i loop trough it and see if the file is listed in the DB and if not i move/delete it. the thing is i dont want to load the server so i installed a sleep function and low priority select query which results in giant script execution times... now i need a way to store the point where i stooped the comparison when the execution time ends... I could load the file names in a .ini file and on load parse it.... that would be faster i think but i am not sure how i should store the whole folder in it... this one has over 4TB of attachments in it.... I am thinking is it possible to open a file and then go to the next one? Or i could use stream_get_contents to store the remaining files in the file....
  19. I only need the mean how to store the file pointer.... I am comparing the file names against a DB and making some manipulations against it. I ONLY need the way to store the current location nothing more nothing less The only way i can think of is that i store the whole dir content into array and then loop trough it and store where i stooped..... any other solutions?????????? And i have already written the rest about manipulation and other stuff loping trough files bla bla bla ... that is not difficult i only don't want to have to store such GIANT arrays into sessions.... because the server limits.... is there a way to store the file pointer????
  20. Hy i am making a script which should go trough a directory files and do some stuff with it, but the script has an execution time limit. i want to be able to continue where i started, how can i tell the file handler from which file to start the directory reading?????
  21. hehe solved it.... YAAAAAAAAAAY!!!
  22. hy i have a rar.exe in my project which allows me to make rar files... I use exec on the file which then makes the rar files the generated string which i apply to the exec command is like this C:/Program Files/WinRAR/Rar.exe a -m5 -s c:/some/location/test.rar c:/destination/of/theCreatedFile/ -r NOW when i open the generated file i have a folder row which is starting from some/location/ and then i have the directory which i wanted to backup with all files.... which is unacceptable i don't wanna let all ppl know my internal server folder structure.... can someone help me out here????
  23. Ok solved,, bud i have another problem when i generate the rar file i get the full amn part to the file like c:/some/directories/and/then/theDirectoryIwanted how can i solve this anyone knows it??? (?.?)
  24. hm i did go to my rar.exe file and executed it and i got the folowing information Usage: rar <command> -<switch 1> -<switch N> <archive> <files...> <@listfiles...> <path_to_extract\> <Commands> a Add files to archive c Add archive comment cf Add files comment cw Write archive comment to file d Delete files from archive e Extract files to current directory f Freshen files in archive i[par]=<str> Find string in archives k Lock archive l[t,b] List archive [technical, bare] m[f] Move to archive [files only] p Print file to stdout r Repair archive rc Reconstruct missing volumes rn Rename archived files rr[N] Add data recovery record rv[N] Create recovery volumes s[name|-] Convert archive to or from SFX t Test archive files u Update files in archive v[t,b] Verbosely list archive [technical,bare] x Extract files with full path <Switches> - Stop switches scanning ac Clear Archive attribute after compression or extraction ad Append archive name to destination path ag[format] Generate archive name using the current date ao Add files with Archive attribute set ap<path> Set path inside archive as Synchronize archive contents av Put authenticity verification (registered versions only) av- Disable authenticity verification check c- Disable comments show cfg- Disable read configuration cl Convert names to lower case cu Convert names to upper case df Delete files after archiving dh Open shared files ds Disable name sort for solid archive e<attr> Set file exclude attributes ed Do not add empty directories en Do not put 'end of archive' block ep Exclude paths from names ep1 Exclude base directory from names ep2 Expand paths to full f Freshen files hp[password] Encrypt both file data and headers idp Disable percentage display ieml[addr] Send archive by email ierr Send all messages to stderr ilog[name] Log errors to file (registered versions only) inul Disable all messages ioff Turn PC off after completing an operation isnd Enable sound k Lock archive kb Keep broken extracted files m<0..5> Set compression level (0-store...3-default...5-maximal) mc<par> Set advanced compression parameters md<size> Dictionary size in KB (64,128,256,512,1024,2048,4096 or A-G) ms[ext;ext] Specify file types to store o+ Overwrite existing files o- Do not overwrite existing files os Save NTFS streams ow Save or restore file owner and group p[password] Set password p- Do not query password r Recurse subdirectories r0 Recurse subdirectories for wildcard names only ri<P>[:<S>] Set priority (0-default,1-min..15-max) and sleep time in ms rr[N] Add data recovery record rv[N] Create recovery volumes s[<N>,v[-],e] Create solid archive s- Disable solid archiving sfx[name] Create SFX archive t Test files after archiving ta<date> Process files modified after <date> in YYYYMMDDHHMMSS format tb<date> Process files modified before <date> in YYYYMMDDHHMMSS format tk Keep original archive time tl Set archive time to latest file tn<time> Process files newer than <time> to<time> Process files older than <time> ts<m,c,a>[N] Save or restore file time (modification, creation, access) u Update files v Create volumes with size autodetection or list all volumes v<size>[k,b] Create volumes with size=<size>*1000 [*1024, *1] vd Erase disk contents before creating volume ver[n] File version control vn Use the old style volume naming scheme vp Pause before each volume w<path> Assign work directory x<file> Exclude specified file x@ Read file names to exclude from stdin x@<list> Exclude files in specified list file y Assume Yes on all queries z<file> Read archive comment from file I think the class i used for reference is not on the newest stand... Can someone help me out here to make the compiling string..... Q.Q‚
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.