Jump to content

Recommended Posts

Posted

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..

Posted
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".

Posted

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.

Posted (edited)
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 by Choonster
  • Like 1

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.

Posted (edited)
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 by TheASTRO
Posted (edited)
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 by Choonster
  • Like 1

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.