Yaroslav 2 years ago
commit
f04c5b5922
8 changed files with 68 additions and 0 deletions
  1. +10
    -0
      tree/.classpath
  2. +17
    -0
      tree/.project
  3. +2
    -0
      tree/.settings/org.eclipse.core.resources.prefs
  4. +14
    -0
      tree/.settings/org.eclipse.jdt.core.prefs
  5. BIN
      tree/bin/module-info.class
  6. BIN
      tree/bin/yaros/tree/main.class
  7. +2
    -0
      tree/src/module-info.java
  8. +23
    -0
      tree/src/yaros/tree/main.java

+ 10
- 0
tree/.classpath View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 17
- 0
tree/.project View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>tree</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 2
- 0
tree/.settings/org.eclipse.core.resources.prefs View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

+ 14
- 0
tree/.settings/org.eclipse.jdt.core.prefs View File

@ -0,0 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
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.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17

BIN
tree/bin/module-info.class View File


BIN
tree/bin/yaros/tree/main.class View File


+ 2
- 0
tree/src/module-info.java View File

@ -0,0 +1,2 @@
module tree {
}

+ 23
- 0
tree/src/yaros/tree/main.java View File

@ -0,0 +1,23 @@
package yaros.tree;
import java.io.File;
public class main {
public static void main(String[] args){
copyFile(new File("C:\\Users\\yaros\\source"), "", 0);
}
public static void copyFile(File f, String space, int num) {
System.out.println("\u001B[3" + num + "m" + space + "-" + " " + f.getName() + "\u001B[0m");
if(num >= 7)
num = 1;
if (f.isDirectory() && f.canRead()) {
num++;
space = space + " ";
for (File file : f.listFiles()) {
copyFile(file, space, num);
}
}
}
}

Loading…
Cancel
Save