English 中文(简体)
在试图进入Agolang的输入档案时出现错误
原标题:Facing error while trying to get access to input file in golang

I am new to golang and in order to complete a coding challenge I have downloaded a code snippet and i have gone through the readme.md file and 页: 1 md 提出可起诉的档案。 创立前,但当我试图通过指挥来管理该法典时,指挥权却起主导作用。 连同文件途径/geektrust样本_input/input1.txt,它总是印刷错误信息“错误开启投入文件”。 For your reference I am providing you the source code file,README.md file Note:- the input file has the extension .txt, it s a text file

main.go


package main

import (
    "bufio"
    "fmt"
    "os"
)

func main() {
    cliArgs := os.Args[1:]

    if len(cliArgs) == 0 {
        fmt.Println("Please provide the input file path")

        return
    }

    filePath := cliArgs[0]
    file, err := os.Open(filePath)

    if err != nil {
        fmt.Println("Error opening the input file")

        return
    }

    defer file.Close()
    scanner := bufio.NewScanner(file)

    for scanner.Scan() {
        /*
            args := scanner.Text()
            argList := strings.Fields(args)

            Add your code here to process the input commands
        */

    }
}


README.md file

# Pre-requisites
* Go 1.15.7/1.16.8/1.17
* go tool

# How to run the code

We have provided scripts to execute the code. 

Use `run.sh` if you are Linux/Unix/macOS Operating systems and `run.bat` if you are on Windows.  Both the files run the commands silently and prints only output from the input file `sample_input/input1.txt`. You are supposed to add the input commands in the file from the appropriate problem statement. 

Internally both the scripts run the following commands 

 * `go build .` - This will build an executable by the name geektrust in the directory $GOPATH/src/geektrust besides the main.go file .
 * Execute the file from the directory $GOPATH/src/geektrust using the command
`./geektrust sample_input/input1.txt`

We expect your program to take the location to the text file as parameter. Input needs to be read from a text file, and output should be printed to the console. The text file will contain only commands in the format prescribed by the respective problem.

This main file, main.go should receive in the command line argument and parse the file passed in. Once the file is parsed and the application processes the commands, it should only print the output.

 # Running the code for multiple test cases

 Please fill `input1.txt` and `input2.txt` with the input commands and use those files in `run.bat` or `run.sh`. Replace `./geektrust sample_input/input1.txt` with `./geektrust sample_input/input2.txt` to run the test case from the second file. 

 # How to execute the unit tests

 The unit tests are ran and the coverage is calculated using the library `gotestsum`. This is independent of your solution and there is no need to add any dependency. However this will work only if you use Go Modules for dependency management.

We execute the unit tests by running the following command from the directory $GOPATH/src/geektrust

`gotestsum --hide-summary=all ./...`
We check for the coverage of unit tests by executing the following command. from the directory $GOPATH/src/geektrust

`gotestsum --hide-summary=all -- -coverprofile=cover.out ./...`

# Help

You can refer our help documents [here](https://help.geektrust.com)
You can read build instructions [here](https://github.com/geektrust/coding-problem-artefacts/tree/master/Go)

页: 1 md 提出可起诉的档案。 创立前,但当我试图通过指挥来管理该法典时,指挥权却起主导作用。 连同文件途径/geektrust样本_input/input1.txt,它总是印刷错误信息“错误开启投入文件”。

问题回答

该方案有两种方式:

第一:

./geektrust sample_input/input1.txt

这是汇编的可起诉性。

第二:

go run main.go sample_input/input1.txt

这部法律通过“戈”指挥实施,并将在必要时汇编。

你们正在做的是把两者结合起来,而两者并不奏效。 例1





相关问题
Separating Business Layer Errors from API errors

The title is horrible, i know; I m terrible at titles on SO here. I m wondering what would be the best way to present unified error responses in a webapi when errors could be raised deep inside the ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

How to tell why a file deletion fails in Java?

File file = new File(path); if (!file.delete()) { throw new IOException( "Failed to delete the file because: " + getReasonForFileDeletionFailureInPlainEnglish(file)); } Is there a ...

Exceptions: redirect or render?

I m trying to standardize the way I handle exceptions in my web application (homemade framework) but I m not certain of the "correct" way to handle various situations. I m wondering if there is a ...

热门标签