代码搜索:Directory
找到约 10,000 项符合「Directory」的源代码
代码结果 10,000
www.eeworm.com/read/122462/14688914
h directory.h
// Copyright (C) 1999 Silicon Graphics, Inc. All Rights Reserved.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of version 2 of the GNU General
www.eeworm.com/read/118928/14847600
gif directory.gif
www.eeworm.com/read/218534/14915901
cpp directory.cpp
#include "directory.h"
using namespace std;
Directory::Directory() {
path = "/";
}
Directory::Directory(const string& dir) {
path = dir;
}
Directory::operator string() const {
return path;
}
vo
www.eeworm.com/read/218534/14915919
h directory.h
#ifndef DIRECTORY_H_
#define DIRECTORY_H_
#include
class Directory {
public:
Directory();
Directory(const std::string& dir);
operator std::string() const;
void cd(const std::string& d
www.eeworm.com/read/114304/15061268
bmp directory.bmp
www.eeworm.com/read/214672/15092326
cc directory.cc
// directory.cc
// Routines to manage a directory of file names.
//
// The directory is a table of fixed length entries; each
// entry represents a single file, and contains the file name,
// and the
www.eeworm.com/read/214672/15092340
h directory.h
// directory.h
// Data structures to manage a UNIX-like directory of file names.
//
// A directory is a table of pairs: ,
// giving the name of each file in the directory,
www.eeworm.com/read/208550/15244824
aspx directory.aspx
class DirectoryLister
{
public static string Go( String dirToList )
{