本文整理汇总了C++中PathName::SetType方法的典型用法代码示例。如果您正苦于以下问题:C++ PathName::SetType方法的具体用法?C++ PathName::SetType怎么用?C++ PathName::SetType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PathName
的用法示例。
在下文中一共展示了PathName::SetType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Do
void OpConvertFileFormats::Do(OpDescriptor*)
{
ERROR3 ("Please read the following comments BEFORE using this op!"); // comment this out to use the op
////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////
// set up the search path, file util allows us just to pass the path/*.xar
String_256 SearchPath = TEXT ("d:\\clipart\\xara\\"); // YOU MUST CHANGE THIS PATH
String_256 FileSpecifier = SearchPath; // YOU MUST CHANGE THIS EXTENSION
FileSpecifier += TEXT("*.art");
String_256 FileSpecifier2 = TEXT("xar"); // YOU MUST CHANGE THIS EXTENSION
////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////
BOOL ok = FileUtil::StartFindingFiles(&FileSpecifier);
active = TRUE;
String_256 Filename;
while (ok)
{
// fileutil will give us the next filename
ok = FileUtil::FindNextFile(&Filename);
String_256 FilePath = SearchPath;
FilePath += Filename;
PathName Path (FilePath);
if (ok)
{
CDocument* pDoc = theApp.OpenDocumentFile((TCHAR*)FilePath);
if (pDoc!=NULL)
{
// Make sure that the files name is sensible
theApp.MakeDocumentNative(pDoc, &Path);
Path.SetType (FileSpecifier2);
String_256 newPath = Path.GetPath ();
pDoc->DoSave ((TCHAR*) newPath, TRUE);
FileCloseAction ();
}
}
}
active = FALSE;
FileUtil::StopFindingFiles ();
}