# Issue with creating a CSV file path

**URL:** https://discourse.julialang.org/t/issue-with-creating-a-csv-file-path/90447
**Category:** New to Julia
**Tags:** error, syntax, csv
**Created:** [November 18, 2022, 12:52pm UTC](https://discourse.julialang.org/t/issue-with-creating-a-csv-file-path/90447 "2022-11-18T12:52:36Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![MHend99](https://avatars.discourse-cdn.com/v4/letter/m/aca169/32.png) [@MHend99](https://discourse.julialang.org/u/MHend99)
#### Post date: [November 18, 2022, 12:52pm UTC](https://discourse.julialang.org/t/issue-with-creating-a-csv-file-path/90447/1 "2022-11-18T12:52:36Z")

</div>

I’m a rookie at this!!! I am having an issue with loading a csv file onto a notebook which I need to complete for an assignment. I am not sure where I am missing a comma or ) but i have tried several variations and this hasn’t worked. Any advice would be very helpful.

 ![Screenshot 2022-11-18 at 12.49.26](https://global.discourse-cdn.com/julialang/original/3X/4/4/4482357ba482af8fdec136d24b62498f9ba427ff.png)

---

<div class="post-metadata">

### Author: ![Jordan\_Cluts](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jordan_cluts/32/13753_2.png) [@Jordan\_Cluts](https://discourse.julialang.org/u/Jordan_Cluts)
#### Post date: [November 18, 2022, 1:02pm UTC](https://discourse.julialang.org/t/issue-with-creating-a-csv-file-path/90447/2 "2022-11-18T13:02:27Z")

</div>

Your file path needs to be passed as a String by surrounding it in quotes. I.E. CSV. read(“C:/path/to/file.csv”, DataFrame)
