1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00

Added support for the extensible wav format block.

This commit is contained in:
Julian Storer 2010-02-17 18:45:33 +00:00
parent d8e16ccc06
commit e900688f09
7 changed files with 93 additions and 47 deletions

View file

@ -238,19 +238,6 @@ const File File::getSpecialLocation (const SpecialLocationType type)
return File::nonexistent;
}
//==============================================================================
const File File::getCurrentWorkingDirectory()
{
char buf [2048];
return File (String::fromUTF8 ((const uint8*) getcwd (buf, sizeof (buf))));
}
bool File::setAsCurrentWorkingDirectory() const
{
return chdir (getFullPathName().toUTF8()) == 0;
}
//==============================================================================
const String File::getVersion() const
{