Posted May 11, 20178 yr Hello. What is the best way of getting crash-reports folder? I looked into forge source and found something called mcDir in CoreMod class. But I can`t really get into how to do that..
May 11, 20178 yr Author 1 minute ago, Jay Avery said: Do you mean you want to know where to find the folder? No, I need to get crash-reports folder within my mod. So it will work with Java`s "File".
May 11, 20178 yr What are you trying to do? Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
May 11, 20178 yr Author 1 minute ago, Choonster said: What are you trying to do? Generally I am trying to read crash-reports folder content.
May 11, 20178 yr 10 minutes ago, TheASTRO said: Generally I am trying to read crash-reports folder content. But what's the reason for doing this? What's the overall goal? If you look the code that saves crash report files (i.e. calls CrashReport#saveToFile), you'll see that the server uses MinecraftServer#getDataDirectory as the parent directory of the crash-reports directory and the client uses Minecraft#mcDataDir. Edited May 11, 20178 yr by Choonster Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
May 11, 20178 yr Author 1 minute ago, Choonster said: But what's the reason for doing this? What's the overall goal? If you look the code that saves crash report files (i.e. calls CrashReport#saveToFile), you'll see that the server uses MinecraftServer#getDataDirectory as the parent directory of the crash-reports directory and the client uses Minecraft#mcDataDir. You mean this will work? File file1 = new File(Minecraft.getMinecraft().mcDataDir, "crash-reports"); Edited May 11, 20178 yr by TheASTRO
May 11, 20178 yr 2 minutes ago, TheASTRO said: You mean this will work? File file1 = new File(Minecraft.getMinecraft().mcDataDir, "crash-reports"); In client-only code, yes. Edited May 11, 20178 yr by Choonster Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.