mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-18 07:52:14 +01:00
backporting fix to https://code.google.com/p/arduino/issues/detail?id=986
This commit is contained in:
parent
49ba3277ff
commit
c6efad5b2e
@ -1666,7 +1666,19 @@ public class Base {
|
|||||||
|
|
||||||
|
|
||||||
static public File getSketchbookLibrariesFolder() {
|
static public File getSketchbookLibrariesFolder() {
|
||||||
return new File(getSketchbookFolder(), "libraries");
|
File libdir = new File(getSketchbookFolder(), "libraries");
|
||||||
|
if (!libdir.exists()) {
|
||||||
|
try {
|
||||||
|
libdir.mkdirs();
|
||||||
|
File readme = new File(libdir, "readme.txt");
|
||||||
|
FileWriter freadme = new FileWriter(readme);
|
||||||
|
freadme.write(_("For information on installing libraries, see: " +
|
||||||
|
"http://arduino.cc/en/Guide/Libraries\n"));
|
||||||
|
freadme.close();
|
||||||
|
} catch (Exception e) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return libdir;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user