本文整理汇总了C++中DirectoryPrx::find方法的典型用法代码示例。如果您正苦于以下问题:C++ DirectoryPrx::find方法的具体用法?C++ DirectoryPrx::find怎么用?C++ DirectoryPrx::find使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DirectoryPrx
的用法示例。
在下文中一共展示了DirectoryPrx::find方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: catch
void
Parser::cat(const string& name)
{
DirectoryPrx dir = _dirs.front();
NodeDesc d;
try
{
d = dir->find(name);
}
catch(const NoSuchName&)
{
cout << "`" << name << "': no such file" << endl;
return;
}
if(d.type == DirType)
{
cout << "`" << name << "': not a file" << endl;
return;
}
FilePrx f = FilePrx::uncheckedCast(d.proxy);
Lines l = f->read();
for(Lines::const_iterator i = l.begin(); i != l.end(); ++i)
{
cout << *i << endl;
}
}
示例2: while
void
Parser::cd(const string& name)
{
if(name == "/")
{
while(_dirs.size() > 1)
{
_dirs.pop_front();
}
return;
}
if(name == "..")
{
if(_dirs.size() > 1)
{
_dirs.pop_front();
}
return;
}
DirectoryPrx dir = _dirs.front();
NodeDesc d;
try
{
d = dir->find(name);
}
catch(const NoSuchName&)
{
cout << "`" << name << "': no such directory" << endl;
return;
}
if(d.type == FileType)
{
cout << "`" << name << "': not a directory" << endl;
return;
}
_dirs.push_front(DirectoryPrx::uncheckedCast(d.proxy));
}