正在创建但未显示在项目目录中的文件

时间:2019-03-04 15:12:42

标签: c++ xcode

我正在使用Xcode编写一个简单的程序。程序的要求之一是创建.txt文件并写入它们。

这是我到目前为止的代码:

int main(){
    SingleRoom new_single("King", 78, 240.45);
//    cout<<new_single.bed_size<<endl;
    save_single_room(new_single);
}

void save_single_room(SingleRoom &room){
    ofstream myfile("new_room2.txt");
    if(myfile.is_open()){
        cout<<"Hi"<<endl;
    }
    myfile << room.room_number;
    myfile.close();
    cout<<"Ended"<<endl;
};

当我运行此代码时,将如下所示创建文件,但不会在Xcode的侧栏中显示。 enter image description here

我已将架构编辑到HotelReservation文件夹中,并且此操作没有任何更改。 password.txtnew_room.txt文件是我手动创建的。

感谢您的帮助。

0 个答案:

没有答案