Implemented directory rename - Resolves issue #17

Implemented create() function - Resolves issue #18

Issues will be updated with more detail.




git-svn-id: http://s3fs.googlecode.com/svn/trunk@289 df820570-a93a-0410-bd06-b72b767a4274
This commit is contained in:
mooredan@suncup.net
2010-12-21 15:24:46 +00:00
parent 5c64ff83cf
commit d3d850596b
3 changed files with 376 additions and 44 deletions

View File

@ -28,3 +28,9 @@ string lower(string s) {
return s;
}
string IntToStr(int n) {
stringstream result;
result << n;
return result.str();
}