diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..12e175e --- /dev/null +++ b/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d9372e --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +/bin/ diff --git a/.project b/.project new file mode 100644 index 0000000..0a60458 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + RAS + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..3a21537 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,11 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/README.md b/README.md new file mode 100644 index 0000000..0b62bfd --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# RecScan +## Utility to search, modify, and/or extract contents from potentially recursive archived messes + +I had started work on this project, but didn't look enough into the API of the Apache commons compress library that I'm using for archival/compression utility. Turns out I was recreating the wheel all over the place, so I just decided to scrap the old project and start it out again new. + +More will be written here as the details in the code work themselves out. + diff --git a/src/RAS.java b/src/RAS.java new file mode 100644 index 0000000..5b58297 --- /dev/null +++ b/src/RAS.java @@ -0,0 +1,19 @@ +/** + * + */ + +/** + * @author sprite + * + */ +public class RAS { + + /** + * @param args + */ + public static void main(String[] args) { + // TODO Auto-generated method stub + + } + +}