-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchdir.cpp
54 lines (51 loc) · 1.04 KB
/
chdir.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "chdir.h"
#include "ui_chdir.h"
#include "all.h"
#include "mainwindow.h"
extern FILE_SYSTEM System;
Chdir::Chdir(QWidget *parent) :
QDialog(parent),
ui(new Ui::Chdir)
{
ui->setupUi(this);
}
Chdir::~Chdir()
{
delete ui;
}
void Chdir::on_pushButton_clicked()
{
string str=ui->textEdit->toPlainText().toStdString();
vector <string> cur;
vector <string> cdo;
string s = "";
string t = "";
for(size_t i = 0;i < str.size();i++)
{
if(str[i] == '/' or str[i] == '.')
{
t += str[i];
if(s!="")
cur.push_back(s);
s="";
}
else
{
s += str[i];
cdo.push_back(t);
t="";
}
}
if(t != "")
cdo.push_back(t);
if(s != "")
cur.push_back(s);
if(cdo[0] == "//")
System.cd("root");
else if(cdo[0] == "./"){}
else if(cdo[0] == "../")
System.cd("..");
for(size_t i = 0;i < cur.size();i++)
System.cd(cur[i]);
accept();
}