Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Persistency::FileSystem::DeleteDir ( CString  dir  )  [inline]

Definition at line 97 of file FileSystem.h.

References Impala::Util::Channel::Buffer(), DoDeleteDir(), mDataChannel, mDataString, and Impala::Util::Channel::SendRequest().

Referenced by Impala::Application::DataServer::AcceptRequest(), and Impala::Persistency::RepositoryInFileSystem::DeleteDir().

00098     {
00099         if (mDataChannel)
00100         {
00101             char* buf = mDataChannel->Buffer();
00102             sprintf(buf, "deletedir \"%s\" \"%s\"\0", dir.c_str(),
00103                     mDataString.c_str());
00104             mDataChannel->SendRequest(strlen(buf)+1);
00105         }
00106         else
00107         {
00108             DoDeleteDir(dir);
00109         }
00110     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:22:52 2011 for ImpalaSrc by  doxygen 1.5.1